一般情況下,遍歷一個陣列有三種方法,for、while、foreach。其中最簡單方便的是foreach。那麼它們在操作和效能上有什麼差別,通常使用那種方法比較好。
下面先讓我們來測試一下共同遍歷一個有50000個下標的一維數組所耗的時間:
測試平台:
CPU:P-M 725
記憶體:512M
硬碟:400G 5400 SP2
WEB:apache 2.0.54 php5.0.4
list($usec,$sec)=explode(" ",microtime());
return ((float)$usec (float)$sec);
}
#####################################
$ time_start = GetRunTime();
for($i = 0; $i $str .= $arr[$i];
}
$time_end = GetRunTime() ;
echo 'Used time of for:'.round($time_used, 7).'(s)
';
######################################
$time_start = GetRunTime();
while(list($key, $val) = each($arr)){
}
$time_end = GetRunTime();
echo 'Used time of while:'.round($time_used, 7).'(s)
';
######################################
$time_start = GetRunTime();
foreach($arr as $key => $val){
}
$time_end = GetRunTime();
$time_used = $time_end - $time_start; 'Used time of foreach:'.round($time_used, 7).'(s)
';
##################### #################
?>
測試結果:
將三次測試結果求平均值:
分別對應for、while、foreach0.1311650
0.1666853
0.1237440
所以,在通常應用中我更喜歡用foreach形式,簡單,而且效率高。在PHP5下, foreach還可以遍歷類別的屬性。
更多相關內容請關注PHP中文網(www.php.cn)!