Share custom functions for converting U.S. time to Beijing time in php

Source: Internet
Author: User
This article mainly introduces the sharing of user-defined functions for converting the U.S. time to Beijing time in php, providing the 13-hour and 8-hour algorithm versions respectively. For more information, see

This article mainly introduces the sharing of user-defined functions for converting the U.S. time to Beijing time in php, providing the 13-hour and 8-hour algorithm versions respectively. For more information, see

Since the email system recently used time conversion, it was necessary to convert the time for downloading emails from Google gmail to Beijing time, so I wrote a time conversion function, we hope to enlighten all those who need it. We all know that the time difference between China and the US is 13 hours. The following code is directly used:

Function datezhuanhuan ($ dateparams) {$ ccc = strtotime ($ dateparams); $ date = date ('Y-m-d '); $ bjtime = date ('Y-m-d', $ ccc); if ($ date = $ bjtime) {$ sbjtime = date ('Y-m-d H: i: s', $ ccc); echo substr ($ sbjtime, 11, 5);} else {$ sbjtime = date ('Y-m-d H: I: s ', $ ccc); return substr ($ sbjtime, 5, 5 );}}

Another 8-hour algorithm:

$ Bj_time = date ("Y-m-d H: I: s", mktime (gmdate ('H') + 8, gmdate ('I '), gmdate ('s'), gmdate ('M'), gmdate ('D'), gmdate ('y ')));

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.