Created
July 29, 2020 06:43
-
-
Save oneeyedman/5489fdc6a9ddfd61fcf0159e197040b4 to your computer and use it in GitHub Desktop.
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 | |
$months = (object) [ | |
'january' => 'enero', | |
'february' => 'febrero', | |
'march' => 'marzo', | |
'april' => 'abril', | |
'may' => 'mayo', | |
'june' => 'junio', | |
'july' => 'julio', | |
'august' => 'agosto', | |
'september' => 'septiembre', | |
'october' => 'octubre', | |
'november' => 'noviembre', | |
'december' => 'diciembre' | |
]; | |
$var = 'january'; | |
print $months->{$var}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment