php显示和实际时间不同的解决

1、使用“ini_set('date.timezone','PRC')”设置时区。

<?php
header("Content-type:text/html;charset=utf-8");
ini_set('date.timezone','GMT');
echo'当前的格林尼治时间为:'.date('Y-m-dH:i:s',time()).'
';
ini_set('date.timezone','PRC');
echo'国内当前时间为:'.date('Y-m-dH:i:s',time());
?>

2、使用“date_default_timezone_set('PRC')”设置时区。

<?php
header("Content-type:text/html;charset=utf-8");
date_default_timezone_set('Europe/Lisbon');
echo'葡萄牙的当前时间为:'.date('Y-m-dH:i:s',time()).'
';
date_default_timezone_set('PRC');
echo'国内当前时间为:'.date('Y-m-dH:i:s',time());
?>

3、在配置文件中,设置“date.timezone=PRC”。

[Date]
;Definesthedefaulttimezoneusedbythedatefunctions
;http://php.net/date.timezone
;date.timezone=
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容