More of a curiosity question. If you have an array of arrays, is there any shorthand for iterating over the interior arrays? You can obviously use the following to do it, but I wondered if there's a single line call that gets rid of the second foreach.
$arr = array(array(1,2,3), array(4,5,6), array(7,8,9));
foreach($arr as $interiorArr)
{
foreach($interiorArr as $number)
{
echo $number;
}
}
output would be "123456789"