Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 17, 2019 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e1f7af2a5adeb4e448a0c12a6a907917 to your computer and use it in GitHub Desktop.
Save parzibyte/e1f7af2a5adeb4e448a0c12a6a907917 to your computer and use it in GitHub Desktop.
<?php
# Antes de configurar zona horaria
echo "\n\nFecha y hora actual: " . date("Y-m-d H:i:s");
# Configurar
date_default_timezone_set("America/Mexico_City");
# Después de configurar
echo "\n\nFecha y hora actual: " . date("Y-m-d H:i:s");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment