php5.1时区问题

在写一个程序的时候,发现一个奇怪的现象,时区默认为0...

在写一个程序的时候,发现一个奇怪的现象,时区默认为0时区,以前更改是需要加或者减去相应的时区后进行时间换算.后来发现php.ini设置文件里有这么一项:
;date.timezone =

把上面的式子更改成

date.timezone ="Hongkong"
就可以了.
当然有更方便控制的方法,如:
if(function_exists('date_default_timezone_set')) {
date_default_timezone_set('Hongkong');//该函数为PHP5.1内置,这里设置为北京/香港时区+8
}
?>
这样式子就变得跟你想象的一样了.

Monthly Archives

Pages

Powered by Movable Type 7.7.2

About this Entry

This page contains a single entry by Cnangel published on April 17, 2006 8:59 PM.

2005年中国十大笑话终于出笼了 was the previous entry in this blog.

受限制环境安装模块方法 is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.