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