Skip to content

Instantly share code, notes, and snippets.

@wilnaweb
Last active September 11, 2018 15:14
Show Gist options
  • Save wilnaweb/8bef593685ddd1606cc5db88ae650be6 to your computer and use it in GitHub Desktop.
Save wilnaweb/8bef593685ddd1606cc5db88ae650be6 to your computer and use it in GitHub Desktop.
[PHP] Arrays Com Nome dos Meses
$months = array(
'pt-br' => array(
'1' => 'Janeiro',
'2' => 'Fevereiro',
'3' => 'Março',
'4' => 'Abril',
'5' => 'Maio',
'6' => 'Junho',
'7' => 'Julho',
'8' => 'Agosto',
'9' => 'Setembro',
'10' => 'Outubro',
'11' => 'Novembro',
'12' => 'Dezembro'
),
'en' => array(
'1' => 'January',
'2' => 'February',
'3' => 'March',
'4' => 'April',
'5' => 'May',
'6' => 'June',
'7' => 'July',
'8' => 'August',
'9' => 'September',
'10' => 'October',
'11' => 'November',
'12' => 'December'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment