Skip to content

Instantly share code, notes, and snippets.

@helisoncruz
Last active October 13, 2022 12:45
Show Gist options
  • Save helisoncruz/30dc01ec1b8605bfd2a91a4343cb9691 to your computer and use it in GitHub Desktop.
Save helisoncruz/30dc01ec1b8605bfd2a91a4343cb9691 to your computer and use it in GitHub Desktop.
Lista de Meses do Ano no formato Array();
<?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