<?php
// Test Source
function Test8_4() {
global $aHash;
#$someClass =& new SomeClass2();
/* The Test */
$t = microtime(true);
$i = 0;
while($i < 1000) {
$tmp[] = "aaaaaaaaaaaaaaaaaaaa";
++$i;
}
return (microtime(true) - $t);
}
?>