如何修复 PHP 中 date() 的警告"

2022-01-14 00:00:00 date warnings xampp php

我在 winxp 上使用 XAMPP(PHP 版本 5.3.1).当我尝试在本地主机上调用 time() 或 date() 函数时.它将显示警告消息,

I am using XAMPP(PHP Version 5.3.1) on winxp. When I try to call time() or date() function on my localhost. It will show warning message as this,

严重性:警告

消息:date() [function.date]:它是不安全地依赖系统的时区设置.你是必需的使用 date.timezone 设置或date_default_timezone_set()功能.如果您使用任何那些方法,你还在收到此警告,您很可能时区标识符拼写错误.我们为 '8.0/no DST' 选择了 'UTC'而是

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

文件名:helpers/date_helper.php

Filename: helpers/date_helper.php

如何禁用警告?谢谢.

推荐答案

尝试在php.ini文件中设置date.timezone.或者您可以使用 ini_set()date_default_timezone_set() 手动设置.

Try to set date.timezone in php.ini file. Or you can manually set it using ini_set() or date_default_timezone_set().

相关文章