Created
November 9, 2020 08:02
-
-
Save galvao/9114e979d464e4ccfdc0301a3d455e61 to your computer and use it in GitHub Desktop.
What time is it in (the majority of) Brazil?
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 | |
/** | |
* NOTICE: Consider the current version of the laguage (currently 7.4.12) when executing, | |
* since it may give you a wrong offset when uding older versions. | |
*/ | |
$now = new DateTime(); | |
$now->setTimezone(new DateTimeZone('America/Sao_Paulo')); | |
echo $now->format('Y-m-d H:i'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment