$nowtime =date("Y-m-d H:i:s");
但这个时间却跟我们的系统时间相差5个小时,解决方法如下:
法1:
打开php.ini找到且按照下面方式改
; Defines the default timezone used by the date
; Defines the default timezone used by the date
date.timezone = Asia/Hong_Kong
重启apache
这个方法并不推荐,因为如果是租用的服务器的话,不可能有权限去改的,
法2:
在调用时间之前写:
date_default_timezone_set('PRC');
强烈推荐第二种方法!