时间:2021-05-25
在写php程序中有时会出现这样的警告:
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 'UTC' for '8.0/no DST' instead in D:\PHPWEB ews\file.php on line 17 。
这是因为PHP所取的时间是格林威治标准时间,所以和你当地的时间会有出入格林威治标准时间和北京时间大概差8个小时左右,我们可以按照下面的方法解决:
1、在页头使用date_default_timezone_set()设置我的默认时区为北京时间,即 <?php date_default_timezone_set("PRC"); ?>就可以了。
2、在php.ini中设置date.timezone的值为PRC,设置好以后的为:date.timezone=PRC或者date.timezone = Asia/Shanghai,同时取消这一行代码的注释,即去掉前面的分号就可以了。
然后重启apache即可!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
修改e/class/connect.php//时区if(function_exists('date_default_timezone_set')){@date_
本文实例讲述了PHP实现的简单日历类。分享给大家供大家参考。具体实现代码如下:复制代码代码如下:date_default_timezone_set("etc/g
Warning:date_default_timezone_get():Itisnotsafetorelyonthesystem'stimezonese
Warning:date_default_timezone_get():Itisnotsafetorelyonthesystem’stimezone
在php程序开发中有时会出现类似于这样的警告:PHPWarning:date():Itisnotsafetorelyonthesystem'stimezones