<?php
// Test Source
function Test8_5() {
global $x;
#$someClass =& new SomeClass2();
/* The Test */
$t = microtime(true);
$i = 0;
while($i < 1000) {
$tmp[] = 'aa $ aaaa $ aaaa $ a';
++$i;
}
return (microtime(true) - $t);
}
?>