Last active
October 13, 2022 12:45
-
-
Save helisoncruz/30dc01ec1b8605bfd2a91a4343cb9691 to your computer and use it in GitHub Desktop.
Lista de Meses do Ano no formato Array();
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$meses = array( | |
"Jan" => 1, | |
"Fev" => 1, | |
"Mar" => 3, | |
"Abr" => 4, | |
"Mai" => 5, | |
"Jun" => 6, | |
"Jul" => 7, | |
"Ago" => 8, | |
"Set" => 9, | |
"Out" => 10, | |
"Nov" => 11, | |
"Dez" => 12 | |
); | |
$meses = array( | |
1 => "Jan", | |
2 => "Fev", | |
3 => "Mar", | |
4 => "Abr", | |
5 => "Mai", | |
6 => "Jun", | |
7 => "Jul", | |
8 => "Ago", | |
9 => "Set", | |
10 => "Out", | |
11 => "Nov", | |
12 => "Dez" | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment