<?php
// Initial Configuration
$isset = true;
$array = array();
$notSetArray = array(0=>'');
$string = '';
// Test Source
function Test9_5() {
global $array;
/* The Test */
$t = microtime(true);
$i = 0;
while($i < 2000) {
isSet($array);
++$i;
}
return (microtime(true) - $t);
}
// Variable Clean-up
function Test9_End() {
global $isset, $array, $string;
unset($isset, $array, $string);
}
?>