php时区设置小结_PHP教程

WBOY
Release: 2016-07-12 09:08:17
Original
1004 people have browsed it

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 – 新加坡 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1056647.htmlTechArticlephp时区设置小结 代码如下: ? date_default_timezone_set(PRC); echo date(Y-m-d H:i:s); ? 1、修改php.ini,在php.ini中找到data.timezone =去掉它前面的;号,然后设...
Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!