PHP中的时间相差8小时怎么解决?
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'); ?>
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以及起以上的版本,要输出本地的时间(限中国),可以这么写代码: