In the Pear documentation, it defines a pattern for how to assemble the structure of an array :
$some_array = array(
'foo' => 'bar',
'spam' => 'ham',
);
In this way, I already use, it separates legibly the elements, but what about an array with say 100 elements. The code will be too long, is it still correct?
Is this the only standard to follow? Are there any other indications of how this structure should be organized?