At the very moment I define my public static variable as below:
public static $closed = array(
'nl' => 'Gesloten',
'fr' => 'Fermer',
'en' => 'Closed',
);
Is there any way to put an array formatted like below in a public static without much nesting?
$days['nl']['mon'] = 'Monday';
$days['fr']['tue'] = 'Tuesday';
$days['en']['wed'] = 'Wednesday';
'nl' => array('mon'=>'Monday')though I agree that I am having a hard time understanding what is meant to be accomplished by this.