PHP本地时区设置

php.ini中:
[Date]
; Defines the default timezone used by the date functions
;date.timezone =

php5中php.ini默认是GMT时间,北京是+8时区,
不建议在php.ini中修改时区设置可通过php脚本来设置,若您有自己完全管理权的服务器当然也可以在php.ini中修改默认时区设置
如果没有权限改php.ini,
可以用函数ini_set(),date_default_timezone_set通过以下方法来设置
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.timezone','Asia/Chongqing');
通过echo date_default_timezone_get();来查看设置。

手册解释:
ini_set
(PHP 4, PHP 5)

ini_set -- Sets the value of a configuration option
Description
string ini_set ( string varname, string newvalue )

Sets the value of the given configuration option. Returns the old value on success, FALSE on failure.
The configuration option will keep this new value during the script's execution, and will be restored
at the script's ending. Not all the available options can be changed using ini_set(). There is a list
of all available options in the appendix.
ini_set 支持php4、php5,用来设置php.ini文件中相关项的配置,并不是所以的项都可以用这个函数来设置的,具体请参考官方手册
相关函数:ini_get(),ini_get_all(),ini_alter(),ini_restore().

你可能感兴趣的:(PHP,Date,String,timezone,服务器,ini)