PHP报错Deprecated: Function ereg_replace() is deprecated in

可能用了PHP5.3乃至更高的PHP版本,目前DEDE中有很多地方的正则函数都用的ereg_replace,而这个函数现在在PHP5.3中已经被废止了。

解决办法:

如果一定要用php5.3,请修改php.ini中下面代码
;extension=php_mbstring.dll
改为
extension=php_mbstring.dll
;mbstring.func_overload = 0
修改为:
mbstring.func_overload = 7

原文地址:https://www.cnblogs.com/jshen/p/4482151.html