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】
推荐阅读
- Linux源码中的mktime算法解析
- redis|Redis 5.0.0集群 ImportError:cannot import name StrictRedisCluster
- vector pair sort
- 安装完redis-py-cluster,运行脚本报错ImportError: cannot import name ‘StrictRedisCluster‘
- importerror cannot import name ‘strictrediscluster‘
- cannot import name 'StrictRedis' from 'redis'
- 性能基础:Android6.0|性能基础:Android6.0 StrictMode 两个新特性与实践
- Hibernate|总结(Hibernate Restrictions 用法)
- standards|2. 什么是ANSI转义序列
- Java|Java 17 更新后的 strictfp 关键字