Skip to content

Instantly share code, notes, and snippets.

@amosrivera
Created October 16, 2012 09:07
Show Gist options
  • Save amosrivera/3898198 to your computer and use it in GitHub Desktop.
Save amosrivera/3898198 to your computer and use it in GitHub Desktop.
Format dates in Spanish.
function format_date($date,$format) {
$es_months = array("Ene", "Abr", "Ago", "Dic");
$en_months = array("Jan", "Apr", "Aug", "Dec");
$timestamp = strtotime(str_replace($es_months,$en_months,$date));
return str_replace($en_months,$es_months,date($format,$timestamp));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment