调用php时出现的错误:
Parse error: syntax error, unexpected $end in XXX on line 330
网上的相关资料:
In PHP 5, the following error may appears as an error entry in Apache error log or simply displays on PHP web p...
一个数组通过 serialize后存入了mysql中,值是这样的格式:
a:2:{i:0;s:9:"baidu";i:1;s:10:"google";}
使用sql语句查找的方法:
用like
select * from table_name where domain like '%baidu%';
或者使用regexp
select * from table_name where domai...