在PHP中陣列分為兩類: 數字索引數組和關聯數組。
其中數字索引數組和C語言中的數組一樣,下標是為0,1,2…
而關聯數組下標可能是任意類型,與其它語言中的hash,map等結構相似。
以下介紹PHP中遍歷關聯陣列的三種方法:
方法1:foreach
複製程式碼 程式碼如下:
$sports = array(
'football' => 'good',
'swimming' => 'very well',
'running' => 'not good');
foreach ($sports as $key => $value) {
echo $key.": ".$value."
";
?>
複製程式碼
🎜>
程式碼如下:
$sports = array(
'football' => 'good',
'swimming' => 'very well',
'running' => 'not good');
while ($elem = each($sports)) {
方法3:list & each
複製程式碼
程式碼如下:
$sports = array(
'football' => 'good',
'swimming' => 'very well' ,
'running' => 'not good');
while (list($key, $value) = each($sports)) {
?>
以上就介紹了torrent kitty search PHP 數組遍歷方法大全foreach,list,each,包括了torrent kitty search方面的內容,希望對PHP教程有興趣的朋友有所幫助。