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

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


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


    推荐阅读