Home > Backend Development > PHP Tutorial > 适用PHP修正时区的几种方法

适用PHP修正时区的几种方法

WBOY
Release: 2016-06-13 12:06:34
Original
1026 people have browsed it

实用PHP修正时区的几种方法

在PHP5.2.4之前的版本无需配置时区。下面是修正PHP时区的三个办法,仅供参考,具体可以学习PHP高级实用技巧教程。

1、修正PHP.ini这个文件
找到date.timezone这行,去掉先面的分号,改成:

date.timezone = Asia/Shanghai

2、修正 .htaccess文件
修正.htaccess文件有两种办法,下面的两条语句只需有一条即可

php_value date.timezone Asia/Shanghai
SetEnv TZ Asia/Shanghai

3、修正PHP代码
也是下面的两条语句只需其中的一句即可

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

比方:

以上是个人总结及在网上收罗都的修正方法,可以登录e良师益友网学习编程语言教程

?

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