一切福田,不離方寸,從心而覓,感無不通。

Warning: date_default_timezone_get(): It is not safe to rely on the system’s

今天在运行PHP应用时,报了上面的警告,

出现这个可能是以下原因
1.如果装xampp,可能是xampp没装好或者有问题,需要重装
2.php 5.3也可能出这个问题,需要修改php.ini文件 找到date.timezone
将它的改为 date.timezone=utc 将前面的分号去掉,重启服务器
或者在index.php中加上 date_default_timezone_set('UTC');

3.可以将index.php里面的
error_reporting(7);
改为
error_reporting(0);
即可避免它们的出现。