首頁  >  文章  >  php教程  >  for、while、foreach效能比較

for、while、foreach效能比較

黄舟
黄舟原創
2016-12-14 11:13:451306瀏覽

一般情況下,遍歷一個陣列有三種方法,for、while、foreach。其中最簡單方便的是foreach。那麼它們在操作和效能上有什麼差別,通常使用那種方法比較好。

下面先讓我們來測試一下共同遍歷一個有50000個下標的一維數組所耗的時間:

測試平台:
CPU:P-M 725
記憶體:512M
硬碟:400G 5400 SP2
WEB:apache 2.0.54 php5.0.4

測試程式碼:

$arr = array();
for($i = 0; $i }

function GetRunTime(){

list($usec,$sec)=explode(" ",microtime());
return ((float)$usec (float)$sec);
}
#####################################
$ time_start = GetRunTime();

for($i = 0; $i $str .= $arr[$i];

}

$time_end = GetRunTime() ;

$time_used = $time_end - $time_start;


echo 'Used time of for:'.round($time_used, 7).'(s)

';

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_ended - $time_start;


echo 'Used time of while:'.round($time_used, 7).'(s)

';

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_end = GetRunTime();

$time_used = $time_end - $time_start; 'Used time of foreach:'.round($time_used, 7).'(s)

';
##################### #################

?>

測試結果:

將三次測試結果求平均值:

分別對應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還可以遍歷類別的屬性。

更多相關內容請關注PHP中文網(www.php.cn)!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn