php timezone获取错误

简介:

在测试ECSHOP网站的时候,在执行安装时出现timezone错误,错误内容大概如下:

 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 'Europe/Helsinki' for 'EEST/3.0/DST' instead in /path/to/my/www/wp-includes/functions.php on line 35

这是贴的别人的错误,我的错误在经过下面改正后通过了,也没记下来

错误原因:php认为你的timezone是不可靠的。以下是某大侠Dan.LaSota提供的方法,可能不能解决你的问题,仅作参考:

 

And thank you for this ,Dan.

According to the article:

http://wordpress.org/support/topic/php-530-amp-wp-28-it-is-not-safe-to-rely-on-the-systems-timezone

Another way to approach this is to let php know what your time zone is. You can edit your php.ini file and put in the following line:

date.timezone = "Asia/Chongqing"

You can find valid time zone strings at http://nl3.php.net/manual/en/timezones.php

目录
相关文章
|
移动开发 PHP
Visual Studio Code中的PHP提示错误:End of line character is invalid
Visual Studio Code中的PHP提示错误:End of line character is invalid
117 0
|
XML JSON PHP
PHP解析json、xml错误
php内置函数json_decode() 可以解析json字符串 但是有的时候看起来正确的json,解析却一直返回null。 你知道吗,json是可能解析失败的,此时PHP不会产生提示。 我们需要手动通过json_last_error()函数获取
216 0
|
PHP
PHP错误与异常
PHP语言中错误与异常
99 0
PHP错误与异常
|
JavaScript PHP
PHP从零开始--错误处理&&函数
PHP从零开始--错误处理&&函数
PHP从零开始--错误处理&&函数
|
NoSQL Linux PHP
使用单进程、strace、gdb调试PHP错误
使用单进程、strace、gdb调试PHP错误PHP一般是在FPM的呵护下运行的,但是某些情况下进程异常崩溃会导致502。下面是解决思想: 1. 单进程运行: php -d display_errors=1 -S 0.
1900 0
|
Web App开发 监控 应用服务中间件
PHP 脚本自动监控 Nginx 504错误
#!/usr/bin/php 将该文件命名为 504check.php修改权限 chmod +x 504check.php 然后crontab -e添加一行 * * * * * /xx/504check.php >/dev/null 2>&1 每分钟系统就会自动检测网站是否响应很慢,若如此,则重启。
1032 0
|
PHP 数据库 关系型数据库
PHP 错误与异常处理(一)
PHP 错误与异常处理详解
1957 0
下一篇
无影云桌面