php将UTc时间转换为北京时间

PHPz
Release: 2018-09-30 16:02:34
forward
7587 people have browsed it

yyyy-MM-ddTHH:mm:ssZ  这种时间格式,是UTC时间格式

将这种格式的时间转换为北京时间

方法:date_default_timezone_set('PRC');prc代表的是中华人民共和国。还有重庆,香港,
上海,自己上网上搜索吧,一般都是用中华人民共和国的。

例:utc:2014-01-01T00:29:23Z
北京:date_default_timezone_set('PRC')
strtotime(2014-01-01T00:29:23Z);然后再用data函数进行格式化

假如utc时间为时间戳,则转换北京的方法是:
date_default_timezone_set('PRC')
data(utc时间戳);

在转换时,先用date_default_timezone_set('PRC'),然后用一个时间函数来格式化时间,
就能轻松转换了。

更多相关教程请访问 php编程从入门到精通全套视频教程

Related labels:
source:csdn.net
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