Home > php教程 > php手册 > PHP 解决时差8小时的问题

PHP 解决时差8小时的问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:49:21
Original
1463 people have browsed it

有时候用php echo date("Y-m-d H:i:s")的时候会发现自己的时间和系统时间有差别 这里 问题 一般就是因为你自己的时区和配置的时区出现了差别的原因: 解决 办法有三种 修改php.ini,增加下面的内容: [Date] ; Defines the default timezone used by the dat

有时候用php echo date("Y-m-d H:i:s")的时候会发现自己的时间和系统时间有差别

这里问题一般就是因为你自己的时区和配置的时区出现了差别的原因:

解决办法有三种

修改php.ini,增加下面的内容:
[Date]  
; Defines the default timezone used by the date functions  
date.timezone = Asia/Chongqing

 

 

你的php.ini里面的时区不是本地的。

你在这里
;date.timezone
改成
date.timezone = "PRC"

或者其他方法

 

 

时区问题
在php.ini 里修改

或者
在文件的开头 加入

ini_set("date.timezone","Asia/Chongqing");

 

=============================================

 

@ini_set("date.timezone", "Asia/Shanghai");

 

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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template