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

2015-01-24信息快讯网

这篇文章主要介绍了PHP date()函数警告: It is not safe to rely on the system解决方法,其实就是时区设置不正确造成的,本文提供了两种方法来解决这个问题,需要的朋友可以参考下

近来总是有系统邮件提示,开始没在意,后来不断提示就看了一下。提示以下信息

PHP Warning:  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 gett
ing this warning, you most likely misspelled the timezone identifier. We selected 'Asia/Chongqing' for 'CST/8.0/no DST' instead in /data0/htdocs/www.qttc.net/function/function.php on line 542

大体是说timezone没有设置,在中国使用的是格林+8小时,所以需要设置一下。

第一种

在页面头部加入以下语句

date_default_timezone_set("PRC");

这种方法有个缺点,就是所有的页面都得添加

第二种

在php.ini里找到date.timezone这行,把值改成PRC,如date.timezone = PRC。如果没有这一行直接加上就好。最后重启WEB服务器与PHP即可。

php读取mssql的ntext字段返回值为空的解决方法
php操作mongoDB实例分析
PHP中mysqli_affected_rows作用行数返回值分析
thinkPHP实现表单自动验证
腾讯微博提示missing parameter errorcode 102 错误的解决方法
php中http与https跨域共享session的解决方法
php将textarea数据提交到mysql出现很多空格的解决方法
thinkphp中session和cookie无效的解决方法
thinkphp3.0输出重复两次的解决方法
thinkphp3.2.2实现生成多张缩略图的方法
ThinkPHP打开验证码页面显示乱码的解决方法
ThinkPHP中使用ajax接收json数据的方法
ThinkPHP通过AJAX返回JSON的两种实现方法
php提示Failed to write session data错误的解决方法
php使用date和strtotime函数输出指定日期的方法
php生成xml时添加CDATA标签的方法
PHP实现支持GET,POST,Multipart/form-data的HTTP请求类
使用PHP和HTML5 FormData实现无刷新文件上传教程
PHP文件缓存内容保存格式实例分析
PHP中exec函数和shell_exec函数的区别
PHP中使用json数据格式定义字面量对象的方法
php版本的cron定时任务执行器使用实例
PHP针对常规模板引擎中与CSS/JSON冲突的解决方法
php解析json数据实例
php中使用array_filter()函数过滤空数组的实现代码
php中Session的生成机制、回收机制和存储机制探究
php实现的DateDiff和DateAdd时间函数代码分享
ThinkPHP中自定义目录结构的设置方法
phpmyadmin出现Cannot start session without errors问题解决方法
Zend Framework 2.0事件管理器(The EventManager)入门教程
ThinkPHP自动转义存储富文本编辑器内容导致读取出错的解决方法
PHP的反射类ReflectionClass、ReflectionMethod使用实例
PHP伪静态Rewrite设置之APACHE篇
PHP中的gzcompress、gzdeflate、gzencode函数详解
PHP错误Allowed memory size of 67108864 bytes exhausted的3种解决办法
浅析application/x-www-form-urlencoded和multipart/form-data的区别
ThinkPHP CURD方法之data方法详解
Codeigniter中禁止A Database Error Occurred错误提示的方法
PHP中date与gmdate的区别及默认时区设置
©2014-2024 dbsqp.com