Test Source: test4 - Function: Test4_5
<?php
// Test Source
function Test4_5() {
global $x;
/* The Test */
$t = microtime(true);
while($i < 1000) {
$alias = $veryMultiDimArray[$i]["a"]["aa"]["aaa"]["aaaa"]["aaaaa"];
++$i;
}
return (microtime(true) - $t);
}
?>