Test Source: test4 - Function: Test4_2
<?php
// Test Source
function Test4_2() {
global $aHash;
/* The Test */
$t = microtime(true);
while($i < 1000) {
$alias = &$aSingleDimArray[$i];
++$i;
}
return (microtime(true) - $t);
}
?>