<?php
// Test Source
function Test11_2() {
global $answer;
/* The Test */
ob_start();
$t = microtime(true);
$i = 0;
while($i < 1000) {
print '';
++$i;
}
$tmp = microtime(true) - $t;
ob_end_clean();
return $tmp;
}
// Variable Clean-up
function Test11_End() {
global $answer;
unset($answer);
}
?>