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