php警告:strtotime()错误

时间:2013-02-20 11:30:46

标签: php string wordpress joomla phpmyadmin

我已将我的joomla和wordpress文件从旧服务器更改为新服务器。在前端和管理端,它的工作没有任何错误。但是在数据库(phpmyadmin)部分,它显示了一些像这样的警告消息..

Warning: strtotime() [function.strtotime]: 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 'Asia/Calcutta' for 'IST/5.0/no DST' instead in /usr/share/phpmyadmin/libraries/db_info.inc.php on line 88

Warning: strftime() [function.strftime]: 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 'Asia/Calcutta' for 'IST/5.0/no DST' instead in /usr/share/phpmyadmin/libraries/common.lib.php on line 1483

请您建议,如何隐藏这些警告信息?

提前致谢。

4 个答案:

答案 0 :(得分:4)

你真的只想隐藏错误信息,或者你想解决问题,他们是在暗示?

在新服务器上,您应该在date.timezone文件中找到已注释掉的设置php.ini。在这里,您必须指定服务器所在的时区。例如,我的服务器位于德国,所以我在这里使用Europe/Berlin

date.timezone = Europe/Berlin

您可以在此处找到支持的时区的完整列表:

http://www.php.net/manual/en/timezones.php

更改此设置后,请重新启动Web服务器,警告应该消失。

答案 1 :(得分:1)

了解如何使用error_reporting,http://php.net/manual/en/function.error-reporting.php

答案 2 :(得分:1)

最好的方法是设置默认时区。 在config.inc.php文件中,插入一行:

date_default_timezone_set('America/Sao_Paulo');

在我的情况下,我使用“America / Sao_Paulo”,我认为是“亚洲/加尔各答”

有关时区的详细信息,请访问http://php.net/manual/en/function.date-default-timezone-set.php

答案 3 :(得分:1)

date_default_timezone_set('Europe/London'); 
试试这个PHP代码可能是你的问题解决了......