最新的Web開發教程
 

PHP end() Function

<PHP陣列參考

輸出的電流和以陣列的最後一個元素的值:

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

echo current($people) . "<br>";
echo end($people);
?>
運行示例»

定義和用法

所述end()函數將內部指針移動到,並輸出,所述陣列中的最後一個元素。

相關方法:

  • current() -在一個數組返回當前元素的值
  • next() -內部指針陣列中移動到,並輸出下一個元素
  • prev() -內部指針移動到,並輸出先前的元件陣列中的
  • reset() -內部指針移動到所述陣列的所述第一元件
  • each() -返回當前元素的鍵和值,和所述內部指針向前移動

句法

end( array )

參數 描述
array 需要。 指定要使用的數組

技術細節

返回值: 成功則返回數組中的最後一個元素的值,或者如果FALSE數組為空
PHP版本: 4+

更多示例

實施例1

所有相關的方法的演示:

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

echo current($people) . "<br>"; // The current element is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe
echo current($people) . "<br>"; // Now the current element is Joe
echo prev($people) . "<br>"; // The previous element of Joe is Peter
echo end($people) . "<br>"; // The last element is Cleveland
echo prev($people) . "<br>"; // The previous element of Cleveland is Glenn
echo current($people) . "<br>"; // Now the current element is Glenn
echo reset($people) . "<br>"; // Moves the internal pointer to the first element of the array, which is Peter
echo next($people) . "<br>"; // The next element of Peter is Joe

print_r (each($people)); // Returns the key and value of the current element (now Joe), and moves the internal pointer forward
?>
運行示例»

<PHP陣列參考