首页 > 运营 > 帮助中心 > 正文

ECShop后台报错:mktime(): You should be using the time() function instead in

2019-10-16 21:42:15
字体:
来源:转载
供稿:网友

ECShop安装之后,在后台发现一个错误提示:

Strict Standards: mktime(): You should be using the time() function instead in E:/web/shopex/admin/shop_config.php on line 32

这个错误提示的意思:mktime()方法不带参数被调用时,会被抛出一个报错提示。

找到文件第32行:

$auth = mktime();

将mktime()替换成time()方法,代码为:

$auth = time();

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