<?php
// Initial Configuration
global $aHash;
$i = 0;
$tmp = '';
while($i < 10000) {
$tmp .= 'a';
++$i;
}
$aHash = array_fill(10000000, 100, $tmp);
unset($i, $tmp);
// Test Source
function Test1_4() {
global $aHash;
/* The Test */
$t = microtime(true);
reset($aHash);
array_keys($aHash);
array_values($aHash);
return (microtime(true) - $t);
}
// Variable Clean-up
function Test1_End() {
global $aHash;
unset($aHash);
}
?>