Home >php教程 >php手册 >php时区设置小结

php时区设置小结

WBOY
WBOYOriginal
2016-06-13 08:54:22875browse

php时区设置小结

代码如下:

 

 

date_default_timezone_set('PRC'); 

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

?> 

 

 

1、修改php.ini,在php.ini中找到data.timezone =去掉它前面的;号,然后设置data.timezone = “Asia/Shanghai”;之后,从启动Apache;

   如果这不操作完,还是有时间误差,打开Apache中的httpd.conf文件,添加PHPIniDir "php.ini的路劲"

2、在程序PHP 5以上版本的程序代码中使用函数ini_set('date.timezone','Asia/Shanghai');或者date_default_timezone_set(‘Asia/Shanghai'); 

 

一些常用的时区标识符说明: 

 

Asia/Shanghai – 上海 

Asia/Chongqing – 重庆 

Asia/Urumqi – 乌鲁木齐 

Asia/Hong_Kong – 香港 

Asia/Macao – 澳门 

Asia/Taipei – 台北 

Asia/Singapore – 新加坡 

Statement:
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
Previous article:加速你的php数组Next article:深入理解php内核阅读1