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