Skip to content

Instantly share code, notes, and snippets.

@thallisphp
Last active September 21, 2023 15:45
Show Gist options
  • Save thallisphp/5508804 to your computer and use it in GitHub Desktop.
Save thallisphp/5508804 to your computer and use it in GitHub Desktop.
Array com nomes dos meses e dias da semana em português do Brasil
<?php
$meses = array(
1 => 'Janeiro',
'Fevereiro',
'Março',
'Abril',
'Maio',
'Junho',
'Julho',
'Agosto',
'Setembro',
'Outubro',
'Novembro',
'Dezembro'
);
$meses_abreviado = array(
1 => 'Jan',
'Fev',
'Mar',
'Abr',
'Mai',
'Jun',
'Jul',
'Ago',
'Set',
'Out',
'Nov',
'Dez'
);
$dias_da_semana = array(
'Domingo',
'Segunda-Feira',
'Terça-Feira',
'Quarta-Feira',
'Quinta-Feira',
'Sexta-Feira',
'Sábado'
);
@LucasLevino
Copy link

Maravilha Amo todos vocês!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment