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