Skip to content

Instantly share code, notes, and snippets.

@oneeyedman
Created July 29, 2020 06:43
Show Gist options
  • Save oneeyedman/5489fdc6a9ddfd61fcf0159e197040b4 to your computer and use it in GitHub Desktop.
Save oneeyedman/5489fdc6a9ddfd61fcf0159e197040b4 to your computer and use it in GitHub Desktop.
<?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