Test Source: test6 - Function: Test6_2
<?php
// Initial Configuration
class SomeClass {
function f() {
}
}
// Test Source
function Test6_2() {
global $aHash;
/* The Test */
$t = microtime(true);
while($i < 1000) {
$obj =& new SomeClass();
++$i;
}
return (microtime(true) - $t);
}
?>