Skip to content

Instantly share code, notes, and snippets.

@xombra
Created April 27, 2014 02:17
Show Gist options
  • Save xombra/11336164 to your computer and use it in GitHub Desktop.
Save xombra/11336164 to your computer and use it in GitHub Desktop.
Formato Fecha y Localizacion
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