PHP中date函数date(): It is not safe to rely
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-12 14:39:53 浏览: 评论:0
今天在php直接使用date函数会发现提示date():It is not safe to rely...错误了,提示是不是一个安全的用法,那么要如何解决此问题呢.
在PHP代码中调用date函数时,在日志里看到如下报错:
PHP Warning: date(): It is not safe to rely on the system's timezone settings.You are *required* to use the date.timezone setting or the date_default_timezone_set() function.
In case you used any of those methods and you are still getting this warning,you most likely misspelled the timezone identifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead//phpfensi.com
为什么会出现这样的报错?
从 PHP 5.1.0 引用了时区设置(date.timezone),但其默认又是关闭的,所以使用date()等函数时,都会产生E_NOTICE 或者 E_WARNING 信息.
处理方法,在调用date前加入下代码:
在页头加入代码:ate_default_timezone_set("PRC");
在页头加入代码:ini_set('date.timezone','注释:RPC');
在php.ini中启用date.timezone设置并设置其值,date.timezone=PRC,并重启apache.
Tags: date函数 提示date():
相关文章
- ·php date函数怎么用(2020-01-07)
- ·php使用strtotime和date函数判断日期是否有效代码分享(2020-08-11)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)