php的默认时间问题

时间:2022-10-19 15:35:27

 

$nowtime =date("Y-m-d H:i:s");

但这个时间却跟我们的系统时间相差5个小时,解决方法如下:

法1:

打开php.ini找到且按照下面方式改
 ; Defines the default timezone used by the date
date.timezone = Asia/Hong_Kong  重启apache
 
这个方法并不推荐,因为如果是租用的服务器的话,不可能有权限去改的,
 
法2:
 
在调用时间之前写:

date_default_timezone_set('PRC');

强烈推荐第二种方法!