Sharing custom functions implemented by php in the Pacific time and Beijing Time

Source: Internet
Author: User
This article mainly introduces the sharing of the Pacific time and custom functions implemented by php and the Beijing time, mainly based on the date_default_timezone_set function. For more information, see

This article mainly introduces the sharing of the Pacific time and custom functions implemented by php and the Beijing time, mainly based on the date_default_timezone_set function. For more information, see

There is nothing to say, just go to the Code:

/*** Pacific time to Beijing time */public function pacificToPRC ($ time = '') {date_default_timezone_set ('pacpacific/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 ;} /*** Beijing time to Pacific time * @ param unknown_type $ time */public function PRCToPacific ($ time = '') {if (empty ($ time )) {date_default_timezone_set ('Asia/Shanghai'); $ time = time ();} date_default_timezone_set ('pacpacific/Apia '); $ date = date ('Y-m-d H: i: s', $ time); $ time = strtotime ($ date); return $ time ;}

Related Article

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.