手机
当前位置:查字典教程网 >编程开发 >php教程 >PHP date()函数警告: It is not safe to rely on the system解决方法
PHP date()函数警告: It is not safe to rely on the system解决方法
摘要:近来总是有系统邮件提示,开始没在意,后来不断提示就看了一下。提示以下信息复制代码代码如下:PHPWarning:date():Itisnot...

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

复制代码 代码如下:

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 date()函数警告: It is not safe to rely on the system解决方法】相关文章:

图书管理程序(一)

PHP session文件独占锁引起阻塞问题解决方法

php简单实现多字节字符串翻转的方法

PHP+MYSQL的文章管理系统(一)

详细介绍:Apache+PHP+MySQL配置攻略

php线性表的入栈与出栈实例分析

如何使用PHP获取网络上文件

PHP rsa加密解密使用方法

一个php作的文本留言本的例子(五)

PHP 判断数组是否为空的5大方法

精品推荐
分类导航