Created
April 27, 2014 02:17
-
-
Save xombra/11336164 to your computer and use it in GitHub Desktop.
Formato Fecha y Localizacion
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
function TIMEZONE($time, $zone) { | |
setlocale(LC_ALL, 'es_VE'); | |
$output = date("D, j-M-Y", ($time + (3600 * $zone))); | |
return $output; | |
} | |
function TIMEZONE_SHORT($time, $zone) { | |
setlocale(LC_ALL, 'es_VE'); | |
$output = date("d/m/Y", ($time + (3600 * $zone))); | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment