再调用log_message的时候报告如下错误:
A PHP Error was encountered
Severity: Warning
Message: date() [function.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
Filename: libraries/Log.php
Line Number: 89
解决方案:
打开php.ini ,修改date.timezone,进行如下配置:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone =PRC

本文介绍了解决在使用PHP的日期函数时遇到的时区设置警告问题的方法。通过正确配置php.ini文件中的date.timezone参数,可以避免系统默认使用UTC时区而导致的错误提示。
908

被折叠的 条评论
为什么被折叠?



