PHP中的时间相差8小时怎么解决?
baby不要哭泣
baby不要哭泣 2017-03-03 10:59:33
0
2
885

PHP中的时间相差8小时怎么解决?

baby不要哭泣
baby不要哭泣

reply all(2)
数据分析师

How to solve the time difference of 8 hours in PHP? -PHP Chinese website Q&A-How to solve the time difference of 8 hours in PHP? -PHP Chinese website Q&A

Let’s take a look and learn.

伊谢尔伦

方法1: 
找到php.ini中的“;date.timezone =”这行,将“;”去掉,改成“date.timezone = PRC”(PRC:People's Republic of China 中华人民共和国),重启Apache,问题解决。 
方法2: 
在php5以及起以上的版本,要输出本地的时间(限中国),可以这么写代码: 

<?php 
date_default_timezone_set('Asia/Shanghai'); 
echo date('Y-m-d H:i:s'); 
?>

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template