Sharing of custom functions implemented by php between Pacific time and Beijing time _ php instance

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 through the date_default_timezone_set function. if you need a friend, you can refer to the following, go directly 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.