2013年11月6日
摘要: 在php升级到php5.3之后后,在使用的过程经常发现有的程序会出现Function eregi() is deprecated 的报错信息。是什么原因呢?这是因为php5.3中不再支持eregi()函数,而使用preg_match()函数替代。解决的方法是:将eregi()函数替换成preg_match() 函数。if(eregi('^test',$file))可以替换为if(preg_match('/^test/i',$file))————-PHP 5.3.0 之後的 regex, 希望使用 PCRE 的規格, POSIX Regex 都不建議使用了(統一 阅读全文
posted @ 2013-11-06 10:31 朱墨烂然 阅读(1003) 评论(0) 推荐(0) 编辑