1

最近我在 Simplepie 中的提要中收到以下错误:

Warning: 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 'GMT/0.0/no DST' instead in /home/xxxxx/public_html/xxxxxx.xxx/www/php/simplepie.inc on line 3636`

现在这可能与我的域最近更改了服务器和/或同时我升级了提供 RSS 提要的博客软件的事实有关。

我不确定我需要改变什么来阻止这个错误。

4

2 回答 2

2

指定时区。例如:

date_default_timezone_set('Europe/Amsterdam');
于 2011-12-31T19:11:51.687 回答
1

要么在你的php 配置(php.ini)中设置它。

或在运行时使用:

ini_set('date.timezone', 'Europe/Amsterdan');
于 2012-01-01T05:05:28.017 回答