Skip to content

Instantly share code, notes, and snippets.

@donpandix
Last active May 18, 2021 14:01
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 donpandix/29fb516e37cd9bad91da3c5a2e0cc1a3 to your computer and use it in GitHub Desktop.
Save donpandix/29fb516e37cd9bad91da3c5a2e0cc1a3 to your computer and use it in GitHub Desktop.
Utilidad que retorna la lista de meses del año en español
/**
* Listado de meses en español
*/
class Util {
/**
* Lista de meses
*/
public static function Meses () {
return [
'01' => 'Enero'
,'02' => 'Febrero'
,'03' => 'Marzo'
,'04' => 'Abril'
,'05' => 'Mayo'
,'06' => 'Junio'
,'07' => 'Julio'
,'08' => 'Agosto'
,'09' => 'Septiembre'
,'10' => 'Octubre'
,'11' => 'Noviembre'
,'12' => 'Diciembre'
];
}
}
// USO Util::Meses() retorna un arreglo de tuplas donde el id es el código y el valor en nombre
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment