Home > php教程 > php手册 > php设置时区方法详解介绍

php设置时区方法详解介绍

WBOY
Release: 2016-06-13 09:56:57
Original
816 people have browsed it

在php中我们要设置时间的方法有很多种,最常用的就是直接在php.ini中进行修改了date.timezone,如果没有服务器权限可以直接使用date_default_timezone_set函数进行设置下面我给大家介绍。

能修改php.ini。打开php.ini查找date.timezone 去掉前面的分号= 后面加XXX,重启http服务(如apache2或iis等)即可

关于XXX,大陆内地可用的值是:Asia/Chongqing ,Asia/Shanghai ,Asia/Urumqi (依次为重庆,上海,乌鲁木


在php.ini中设置时区

 代码如下 复制代码

date.timezone = PRC

在代码中设置时区

 代码如下 复制代码

date_default_timezone_set('Asia/Shanghai');//'Asia/Shanghai' 亚洲/上海

date_default_timezone_set('Asia/Chongqing');//其中Asia/Chongqing'为“亚洲/重庆”

date_default_timezone_set('PRC');//其中PRC为“中华人民共和国”

ini_set('date.timezone','Etc/GMT-8');

ini_set('date.timezone','PRC');

ini_set('date.timezone','Asia/Shanghai');

ini_set('date.timezont','Asia/Chongqing');

上面的代码我们可以直接在在 PHP 页面头中设置。

 代码如下 复制代码

date_default_timezone_set('PRC');

测试:

echo date('Y-m-d H:i:s');

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template