最近已解决preg_replace(): The /e 报错!
分类目录在使用PHP5.5、PHP5.6就出现大量的警告报错:PHP Deprecated: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in /www/source/module/rewrite.php on line 30。即网站程序在source/module/rewrite.php 第30项,报错语句:return preg_replace($search, $replace, $content);提示改为preg_replace_callback().经分析分别改为以下即可以解决!
$content = preg_replace_callback($search, function ($matches) {return rewrite_other($matches[2]);}, $content);