|
Posted by dennis.sprengers on 05/07/07 15:35
The length of the array's may vary, as may the number of array's. But
all array's will be of equal length, i.e.
$arr = array(
array(3, 5, 7, 9, 23, 53, 54, 57),
array(2, 4, 6, 8, 23 , 2, 43, 5),
array(1, 3, 5, 7, 56, 45, 8, 54),
array(4, 4, 5, 3, 21, 3, 23, 42),
array(6, 3, 2, 1, 8, 33, 12, 43)
);
is also possible but
$arr = array(
array(3, 5, 7, 9, 23, 53, 54, 57),
array(2, 4, 6, 8, 23 , 2),
);
will never be :-) Hope this helps!
Navigation:
[Reply to this message]
|