Home > Backend Development > PHP Tutorial > 格林时间及当地时间问题

格林时间及当地时间问题

WBOY
Release: 2016-06-06 20:14:04
Original
1445 people have browsed it

ecshop输出
格林时间及当地时间问题

格林时间及当地时间问题

然后将时间放到本地输出

格林时间及当地时间问题

格林时间及当地时间问题

这是为什么。。。。。?

回复内容:

ecshop输出
格林时间及当地时间问题

格林时间及当地时间问题

然后将时间放到本地输出

格林时间及当地时间问题

格林时间及当地时间问题

这是为什么。。。。。?

用的时区不一样,ecshop用的应该是零时区时间来显示的,本地显示的时间使用的东八区,两个时间是同一个时间点,0时区10:15的时候东八区就是18:15

修改php.ini,设置data.timezone = “Asia/Shanghai”;
或代码内:

<code>ini_set('date.timezone','Asia/Shanghai');
date_default_timezone_set(‘Asia/Shanghai'); </code>
Copy after login
Related labels:
php
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