`
jordan_micle
  • 浏览: 245757 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

PHP Warning: date() [function.date]

阅读更多

在用PHP5.3以上的PHP版本时,只要是涉及时间的会报一个

"PHP 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 '8.0/no DST' instead in"

这样的错。如何解决呢

 

实际上,从 PHP 5.1.0 ,当对使用date()等函数时,如果timezone设置不正确,在每一次调用时间函数时,都会产生E_NOTICE 或者 E_WARNING 信息。而又在php5.1.0中,date.timezone这个选项,默认情况下是关闭的,无论用什么php命令都是格林威治标准时间,但是PHP5.3中好像如果没有设置也会强行抛出了这个错误的,解决此问题,只要本地化一下,就行了。

以下是三种方法(任选一种都行):

一、在页头使用date_default_timezone_set()设置 date_default_timezone_set('PRC'); //东八时区 echo date('Y-m-d H:i:s');

 

二、在页头使用 ini_set('date.timezone','Asia/Shanghai');

 

三、修改php.ini。打开php5.ini查找date.timezone 去掉前面的分号修改成为:date.timezone =PRC

重启http服务(如apache2或iis等)即可。  

XXX可以任意正确的值。对于我们国内来说:可以为以下值:Asia/Chongqing ,Asia/Shanghai ,Asia/Urumqi (依次为重庆,上海,乌鲁木齐)港台地区可用:Asia/Macao ,Asia/Hong_Kong ,Asia/Taipei (依次为澳门,香港,台北),还有新加坡:Asia/Singapore,当然PRC也行。

分享到:
评论

相关推荐

    php报时区错误,按照网上说的改时间date.timezone根本不管用!怎么解决,看我的.zip

    php报时区错误,按照网上说的改时间date.timezone根本不管用!怎么解决,看我的.zip Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone settings. You are *required* to use ...

    PHP错误提示It is not safe to rely on the system……的解决方法

    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 missp

    PHP date()函数警告: It is not safe to rely on the system解决方法

    - **`date.timezone`设置**:这是`php.ini`中的一个配置项,用于指定PHP脚本运行时的默认时区。如果不设置,PHP会尝试从系统中获取时区信息,从而可能引发警告。 - **`date_default_timezone_get()`函数**:这个...

    javascript技巧

    function functionName(parameters) { // 函数体 } ``` 13. **表单操作**:可以通过 `document.forms[index]` 来访问表单元素,并对其进行操作。例如,获取第一个表单:`document.forms[0]`。 14. **打开新...

    HPL: Vol. IV: Functional and Logic Programming Languages

    ISBN: 1578700116 Pub Date: 06/11/98 Foreword to the Handbook of Programming Languages About the Authors Part 1—Lisp Chapter 1—The LISP Language Chapter 2—Emacs Lisp: A Short Description ...

    深入解析PHP 5.3.x 的strtotime() 时区设定 警告信息修复

    在PHP配置文件中(通常为`php.ini`)添加`date.timezone`配置项。例如,你可以将时区设置为“Asia/Shanghai”,如下所示: ``` date.timezone = "Asia/Shanghai" ``` 如果你使用的是Debian或者类似的系统,你...

    学习js的107条技巧默认分类

    - 示例:`window.alert("Warning!");` ### 21. 确认对话框 - **确认方式**:使用`window.confirm()`显示确认对话框。 - 示例:`if (window.confirm("Do you want to continue?")) { console.log("User clicked OK...

    javascript常用方法

    - **示例**: `window.alert("Warning!");` #### 22. 确认对话框 `window.confirm()` 方法用于显示带有确认和取消按钮的消息框。 - **示例**: `if (window.confirm("Are you sure?")) { ... }` #### 23. 输入对话框...

    三星9305收索

    <!...--STATUS OK--><html><head>;..._position:;min-height:100%}#head{padding-bottom:100px;text-align:center;*z-index:1}#ftCon{height:100px;position:absolute;bottom:44px;text-align:center;...

    关于php程序报date()警告的处理(date_default_timezone_set)

    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 ...

    常用JavaScript语法100(超实用)

    - 示例:`window.alert("Warning message");` ### 20. 显示确认对话框 - 使用 `window.confirm()` 来显示确认对话框。 - 示例:`if (window.confirm("Are you sure?")) { ... }` ### 21. 显示提示框 - 使用 `...

    js 例子 最常用的100个例子

    例如,`alert("Warning!");` 显示警告框。 ### 22. 确认对话框:`window.confirm()` `confirm(message)` 方法用于显示一个确认对话框,用户可以选择确认或取消。例如,`confirm("Do you want to continue?")` 显示...

    EurekaLog_7.5.0.0_Enterprise

    1)....Fixed: Added workaround for codegen bug in Delphi 7 (possibly - other), bug manifests itself as wrong date-time in reports or integer overflows 2)....Fixed: Some MAPI DLLs may not be loaded ...

    php.ini-development

    You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; encoding will be transparently converted to the ...

    [已弃用]用于启动的react.js日期时间选择器-React开发

    [[已弃用] react-bootstrap-datetimepicker:warning:此存储库不再维护,请参阅此fork:https://github.com/YouCanBookMe/react-datetime该项目... render:function(){返回 ; }有关更多详细信息,请参见示例。 原料药

    ECSHOP安装数据库失败date_default_timezone_get()问题

    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 ...

    Visual Basic Function List

    6. **DateValue("日期")**:返回日期字符串表示的日期。 7. **Day("日期")**:返回日期中的天数。 8. **Hour("时间")**:返回24小时制的"时间"的小时数。 9. **Month("日期")**:返回日期中的月份。 10. **...

    hls.min.js

    e.a=a},function(t,e){function r(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function i(t){return"function"==typeof t}function a(t){return"number"==typeof t}function n...

    lichee_20170502_1607_全志R16的linux系统编译需要改动的文件_使用parrotv1.1的内核_没有外层目录.7z

    libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libintl-perl libio-html-perl liblwp-mediatypes-perl liblwp-protocol-https-perl libnet-http-perl libtext-unidecode-perl libwww-perl ...

Global site tag (gtag.js) - Google Analytics