Strict standards: mktime(): You should be using the time() function instead in D:\wamp\wamp\www\ECSh

来源:互联网 发布:软件漏洞刷钱 编辑:程序博客网 时间:2024/06/07 07:05

Strict standards: mktime(): You should be using the time() function instead in D:\wamp\wamp\www\ECShop\upload\admin\sms_url.php on line 31 错误的解决方法:


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

Strict standards: mktime(): You should be using the time() function instead in D:\wamp\wamp\www\ECShop\upload\admin\sms_url.php on line 31

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

按照路径 D:\wamp\wamp\www\ECShop\upload\admin\sms_url.php 找到文件第31行:

$auth = mktime();

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

$auth = time();




0 0
原创粉丝点击