I've got an array looking something like this:
Array
(
[A] => Array
(
[A] => Array
(
[01] => Array
(
[01] => Array
(
[0] => 01
[1] => 02
)
[02] => Array
(
[0] => 01
[1] => 02
[2] => 03
[3] => 04
[4] => 05
)
I'm looking at the last level array, ie: ['A']['A']['01']['01']x and ['A']['A']['01']['02']x
At this level, in the example above, 01 has 2 items, 02 has 5 items, 03 could have 4 items, etc
I want to know, without iterating through all the items, what is the highest number of items, ie: in this example the highest number of items is 5 (not the value 05, but the number of items at this level of the array)