Skip to content

Instantly share code, notes, and snippets.

@galvao
Created November 9, 2020 08:02
Show Gist options
  • Save galvao/9114e979d464e4ccfdc0301a3d455e61 to your computer and use it in GitHub Desktop.
Save galvao/9114e979d464e4ccfdc0301a3d455e61 to your computer and use it in GitHub Desktop.
What time is it in (the majority of) Brazil?
<?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