在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...... 能这这警告的提示信息我们可以初步知道是时区问题,这是因为PHP默认获取的时间是格林威治标准时间,所以这个时间会和标准北京时间相差8个小时,对于这个错误我们可以选用下面两个方法之中的一个就可以解决。
1、在页头使用date_default_timezone_set('PRC')设置时区为北京时间即可。 关于PHP时间方面的知识可参考:PHP时间函数使用详解
文章来源 CODETC,欢迎分享,转载请注明地址:
http://www.codetc.com/article-104-1.html
|