Home  >  Article  >  php教程  >  php实现的太平洋时间和北京时间互转的自定义函数分享

php实现的太平洋时间和北京时间互转的自定义函数分享

WBOY
WBOYOriginal
2016-06-06 20:19:172388browse

这篇文章主要介绍了php实现的太平洋时间和北京时间互转的自定义函数分享,主要靠date_default_timezone_set函数来实现,需要的朋友可以参考下

没有什么好说的了,,直接上代码吧:

/** * 太平洋时间转北京时间 */ public function pacificToPRC($time=''){ date_default_timezone_set('Pacific/Apia'); if(empty($time)){ $time = time(); } date_default_timezone_set('Asia/Shanghai'); $date = date('Y-m-d H:i:s',$time); $time = strtotime($date); return $time; } /** * 北京时间转太平洋时间 * @param unknown_type $time */ public function PRCToPacific($time=''){ if(empty($time)){ date_default_timezone_set('Asia/Shanghai'); $time = time(); } date_default_timezone_set('Pacific/Apia'); $date = date('Y-m-d H:i:s',$time); $time = strtotime($date); return $time; }

Statement:
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