【PHP问题解决办法】Deprecated: Function eregi() is deprecated in 在php升级到php5.3之后后,在使用的过程经常发现有的程序会出现Function eregi() is deprecated 的报错信息。是什么原因呢? 这是因为php5.3中不再支持eregi()函数,而使用p…
php5.3不支持eregi()函数了 写正则的时候可能会碰到用ereg()时出现错误,如:Deprecated: Function eregi() is deprecated ,原因就是php5.3已经不支持ereg(),可以用preg_match() i 参数替代,比如:ereg(“^…