首頁  >  文章  >  後端開發  >  PHP 取得數組的最後一個元素

PHP 取得數組的最後一個元素

WBOY
WBOY原創
2024-08-29 12:43:49611瀏覽

PHP 取得陣列的最後一個元素是指使用 end() 函數來取得關聯數組中的最後一個元素。 PHP 中的 end() 函數是一個內建函數,具有獨特的功能,可以操作並使用與陣列關聯的內部指標來指向陣列的最後一個元素,然後從陣列中傳回該最後一個元素。這個用於獲取最後一個元素的內建函數與一些特定的 PHP 版本相容,例如 PHP 版本 4、PHP 版本 5 和 PHP 7。

廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

文法

取得陣列最後一個元素的語法流程如下:

end($src_array)
  • end (): 這是一個允許從陣列(即 src_array)傳遞參數的函數。
  • src_array: 這是從 end() 函數傳遞的參數,用於取得所需的最後一個元素。
  • 傳回類型:上述函數的回傳類型為true 或false,這表示如果值為true,則傳回數組中的最後一個元素,如果值為false,那麼傳回的值將會是一個空數組,沒有任何回傳類型。

如何在 PHP 中取得陣列的最後一個元素?

在 PHP 中取得數組最後一個元素的方法有多種,但出於需求,還是建議使用某些方法。 PHP 中元素和陣列索引的取得和操作都是透過遍歷來完成的。因此,這取決於需要如何操作數據。

PHP中取得陣列最後一個元素的方法如下:

  • 最初,應該正確遍歷定義的數組,以使用 end() 函數來取得最後一個元素。
  • End() 函數是PHP 中的內建函數,廣泛用於透過指向數組最後一個元素的內部指標變化來獲取最後一個元素,這意味著它完全取決於返回類型,這有其自身的意義.
  • 如果 end 函數給出的值為 true,則可以說最後一個元素已正確取得。但如果 end 函數給出的值為 false,則表示傳回的值為空,而沒有取得最後一個元素。
  • 在PHP 中獲取數組最後一個元素的另一種方法是使用pop() 函數,這意味著數組的最後一個元素很容易被刪除,但存在一些特殊情況,例如當數組為空且不是數組時數組,那麼傳回的值將為NULL。否則,它將傳回該值。
  • 此外,數組的最後一個元素可以從多維數組中獲取,這意味著如果PHP 中數組的最後一個元素被識別,那麼數組最後一列中存在的值可以是使用索引鍵和列鍵拉取和操作以取得列的最後一個元素。
  • 為了將列與陣列列表中的鍵元素映射,需要主鍵。
  • 識別多維數組的正確方法是將其與關聯數組及其功能進行比較。

PHP 取得數組最後一個元素的範例

下面提到了不同的例子:

範例#1

程式用於示範透過使用 end() 函數列印陣列的最後一個元素來檢索陣列的最後一個元素,如圖所示。來源數組的輸入是水果列表,要獲得的最後一個元素是 Banana,如輸出所示。

代碼:

<?php
$arr = array('Apple', 'Guava', 'Banana');
echo end($arr);
?>

輸出:

PHP 取得數組的最後一個元素

範例#2

該程式演示了PHP 中的數組集,用於從資料庫中獲取與列相關的數據,然後在索引列中提供相關元素,以從該列中檢索最後命名的值,如下所示在輸出中。

代碼:

<?php
$rcrds = array(
array(
'id' => 1124,
'1st_nm' => 'Ani',
'lst_nm' => 'Jo',
),
array(
'id' => 2356,
'1st_nm' => 'Samm',
'lst_nm' => 'Brack',
),
array(
'id' => 7890,
'1st_nm' => 'Brown',
'lst_nm' => 'Dan_l',
),
array(
'id' => 5623,
'1st_nm' => 'Ptr',
'lst_nm' => 'Katty',
)
);
$last_nm = array_column($rcrds, 'lst_nm');
print_r($last_nm);
?>

輸出:

PHP 取得數組的最後一個元素

範例 #3

程式示範了PHP 中的pop() 函數,該函數專門示範如何使用操作從數組中獲取最後一個元素,首先獲取列表,然後返回列表中的實際值作為最後一個元素,如下所示輸出。 end() 函數和 pop() 函數的使用如輸出所示。

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$arr_lst=array("magenta","green","red","blue","pink");
array_pop($arr_lst);
print_r($arr_lst);
?>
</body>
</html>

Output:

PHP 取得數組的最後一個元素

Example #4

This program demonstrates the difference between the last key and end function simultaneously to fetch the last value from an array by consuming a set of arrays as input and giving a string of length 3 as output as shown in the output.

Code:

<!DOCTYPE html>
<html>
<body>
<?php
$ar_lst = array(
'1st' => 151,
'2nd' => 234,
'lst' => 657,
);
end($ar_lst);
$key_set = key($ar_lst);
var_dump($key_set);
?>
</body>
</html>

Output:

PHP 取得數組的最後一個元素

Note: A mere recommendation for the above program to get the last element of an array is the combination of both the end() function and key() function, where the end() function will be used to return the last element by advancing the array’s internal pointer followed by returning the value. Similarly, the key() function will also return the index element of the current array.

Conclusion

PHP’s last element of an array is fetching the last element from an array using certain functions in PHP like the end() function, pop() function. Again, it all depends on the requirement of fetching and the manipulation needed to be performed on the array set. Also, an internal pointer within the array can be used as a pointer for performing the operation.

以上是PHP 取得數組的最後一個元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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