Level 20
Collections are array, as superman is a man.
So you can do
$persons = array('name' => 'John', 'Family' => 'Jeferson', 'age' => 26);
//or, other synthax, same result
$foo = ['name' => 'John', 'Family' => 'Jeferson', 'age' => 26];
But you will not have all methods related to collections. But you can loop in it, and some basic stuff.
1 like