PHP each() 函數

來源:互聯網
上載者:User
文章目錄
  • 文法
  • 例子解釋
定義和用法

each() 函數產生一個由數組當前內部指標所指向的元素的鍵名和索引值組成的數組,並把內部指標向前移動。

返回的數組中包括的四個元素:鍵名為 0,1,key 和 value。單元 0 和 key 包含有數組單元的鍵名,1 和 value 包含有資料。

如果內部指標越過了數組範圍,本函數將返回 FALSE。

文法
each(array)
參數 描述
array 必需。規定要使用的數組。
例子 1
<?php
  $people = array("Peter", "Joe", "Glenn", "Cleveland");
  print_r (each($people));
?>

 

輸出:

Array ( [1] => Peter [value] => Peter [0] => 0 [key] => 0 )

 

例子 2

each() 經常和 list() 結合使用來遍曆數組。本例與上例類似,不過迴圈輸出了整個數組:

<?php
  $people = array("Peter", "Joe", "Glenn", "Cleveland");

  reset($people); 
  while (list($key, $val) = each($people))
   {
    echo "$key => $val<br />";
   }
?>

 

輸出:

0 => Peter
1 => Joe
2 => Glenn
3 => Cleveland

 

例子解釋

因為將一個數組賦值給另一個數組時會重設原來的數組指標,因此在上例中如果我們在迴圈內部將

$people 賦給了另一個變數的話將會導致無限迴圈。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.