<?php
// Initial Configuration
$answer = 2;
// Test Source
function Test10_1() {
global $answer;
/* The Test */
$t = microtime(true);
$i = 0;
while($i < 1000) {
if($answer == 1) {
} else if($answer == 2) {
}
++$i;
}
return (microtime(true) - $t);
}
// Variable Clean-up
function Test10_End() {
global $answer;
unset($answer);
}
?>