Skip to content

Instantly share code, notes, and snippets.

@rodrigo-x
Last active December 10, 2015 01:19
Show Gist options
  • Save rodrigo-x/4357891 to your computer and use it in GitHub Desktop.
Save rodrigo-x/4357891 to your computer and use it in GitHub Desktop.
Date in Bahia...
$Bahia = function() {
try {
if ( !class_exists( 'DateTime' ) ) throw new Exception( "Don´t have a DateTime Class..", 1 );
$date = new DateTime( 'America/Bahia' );
return $date->format( 'd-m-y' );
}
catch( NeryException $e ) {
return $e->getMessage();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment