Created
July 17, 2020 07:54
-
-
Save lighter/9b04351b6cdc035a2206f4407ef5ecb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
date_default_timezone_set('Pacific/Midway'); | |
//date_default_timezone_set('Asia/Taipei'); | |
var_dump(time()); | |
var_dump(date('Y-m-d', time())); | |
// utc -11 | |
date_default_timezone_set('Pacific/Midway'); | |
var_dump(strtotime('2020-07-16 00:00:00')); | |
// utc +8 | |
date_default_timezone_set('Asia/Taipei'); | |
var_dump(strtotime('2020-07-17 00:00:00')); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment