2012年10月2日

This function ereg_replace() has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged

摘要: 碰到php升级到5.3.0后,function ereg_replace()被废除后的解决办法 $sefu = explode(",", ereg_replace( ' +', '', SEO_URLS_ONLY_IN ));改为:$sefu = explode(",", preg_replace( '/ +/', '', SEO_URLS_ONLY_IN )); 阅读全文

posted @ 2012-10-02 11:44 haven24 阅读(228) 评论(0) 推荐(0)

导航