PHP date()函数警告: It is not safe to rely on the system解决方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-04-07 11:08:18 浏览: 评论:0
这篇文章主要介绍了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即可。
Tags: It is not safe to rely
相关文章
- ·php curl_init函数用法(2013-11-28)
- ·获取fckeditor插入文章的图片函数(2013-11-28)
- ·php session_cache_limiter session_cache_expire等函数(2013-11-29)
- ·php提示:Call to undefined function curl_init(2013-12-04)
- ·php set_time_limit()用法测试详解(2014-02-23)
- ·php preg_split()字符串分割函数的使用方法(2014-05-22)
- ·php中header函数后是否应该有exit(2014-06-11)
- ·PHP中exit()与die()的区别(2014-06-25)
- ·php中explode与split函数的区别(2014-07-10)
- ·php curl_init函数用法详解说明(2014-07-12)
- ·php中htmlspecialchars,htmlentities用法(2014-09-14)
- ·php html_entity_decode实例教程(2014-09-20)
- ·php中file_get_contents函数高级用法(2015-04-15)
- ·php中die()与exit()的真正区别(2015-12-10)
- ·PHP函数explode和split的区别(2016-08-25)
- ·php curl_init函数用法(2020-09-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)