PHP的警告:的strtotime()错误(php Warning: strtotime() Err

2019-07-20 05:17发布

我已经改变了我的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

你可以请建议,如何隐藏这些警告消息?

提前致谢。

Answer 1:

你真的只是想隐藏的错误讯息或你想解决的问题,他们表示?

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

date.timezone = Europe/Berlin

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

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

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



Answer 2:

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



Answer 3:

最好的办法是设置一个默认的时区。 在config.inc.php文件,插入一个符合:

date_default_timezone_set('America/Sao_Paulo');

在我来说,我使用“美洲/圣保罗”你的情况我认为是“亚洲/加尔各答”

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



Answer 4:

date_default_timezone_set('Europe/London'); 

试试这个PHP代码可能是你的问题已经解决...



文章来源: php Warning: strtotime() Error