一般情況下,遍歷一個數組有三種方法,for、while、foreach。其中最簡單方便的是foreach。那麼它們在操作和性能上存在什麼差別,通常使用那種方法比較好。
下面先讓我們來測試一下共同遍歷一個有50000個下標的一維數組所耗的時間:
測試平台:
CPU:P-M 725
內存:512M
硬盤:40G 5400轉
OS:Windows XP SP2
WEB:apache 2.0.54 php5.0.4
測試代碼:
<?php
/*
* @ Author: Lilov
* @ Homepage: www.codesky.com
* @ E-mail: [email protected]
*
*/
$arr = array();
for($i = 0; $i < 50000; $i++){
$arr[] = $i*rand(1000,9999);
}
function GetRunTime()
{
list($usec,$sec)=explode(" ",microtime());
return ((float)$usec+(float)$sec);
}
######################################
$time_start = GetRunTime();
for($i = 0; $i < count($arr); $i++){
$str .= $arr[$i];
}
$time_end = GetRunTime();
$time_used = $time_end - $time_start;
echo Used time of for:.round($time_used, 7).(s)<br><br>;
unset($str, $time_start, $time_end, $time_used);
######################################
$time_start = GetRunTime();
while(list($key, $val) = each($arr)){
$str .= $val;
}
$time_end = GetRunTime();
$time_used = $time_end - $time_start;
echo Used time of while:.round($time_used, 7).(s)<br><br>;
unset($str, $key, $val, $time_start, $time_end, $time_used);
######################################
$time_start = GetRunTime();
foreach($arr as $key => $val){
$str .= $val;
}
$time_end = GetRunTime();
$time_used = $time_end - $time_start;
echo Used time of foreach:.round($time_used, 7).(s)<br><br>;
######################################
?>
測試結果:
將三次測試結果求平均值:
分別對應for、while、foreach
0.1311650
0.1666853
0.1237440
經過反復多次測試,結果表明,對於遍歷同樣一個數組,foreach速度最快,最慢的則是while。foreach比while大約快20% ~ 30%左右。隨後再把數組下標增加到500000、5000000測試結果也一樣。但從原理上來看,foreach是對數組副本進行操作(通過拷貝數組),而while則通過移動數組內部指標進行操作,一般邏輯下認為,while應該比foreach快(因為foreach在開始執行的時候首先把數組復制進去,而while直接移動內部指標。),但結果剛剛相反。原因應該是,foreach是PHP內部實現,而while是通用的循環結構。
所以,在通常應用中我更喜歡用foreach形式,簡單,而且效率高。在PHP5下, foreach還可以遍歷類的屬性。