首页 > 网站 > 帮助中心 > 正文

升级到v2.7.0后 Deprecated: Function eregi() is

2024-07-09 22:56:23
字体:
来源:转载
供稿:网友

登陆后台模板选择的地方出现以下报错信息

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))

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表