数据分析师2017-10-01 00:39:11
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.
伊谢尔伦2017-03-03 11:00:51
方法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'); ?>