登陸后臺模板選擇的地方出現以下報錯信息
Deprecated: Function eregi() is deprecated in /var/www/ecshop/admin/template.php on line 843
產生錯誤的原因是:
eregi()函數在php 5.30不被支持
修正方法:
將admin/template.php 843行的
if (eregi("^(style|style_)(.*)*", $file))
修改為
if (preg_match("/^(style|style_)(.*)*/i", $file))
新聞熱點
疑難解答