PHP 取得陣列的最後一個元素是指使用 end() 函數來取得關聯數組中的最後一個元素。 PHP 中的 end() 函數是一個內建函數,具有獨特的功能,可以操作並使用與陣列關聯的內部指標來指向陣列的最後一個元素,然後從陣列中傳回該最後一個元素。這個用於獲取最後一個元素的內建函數與一些特定的 PHP 版本相容,例如 PHP 版本 4、PHP 版本 5 和 PHP 7。
廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
取得陣列最後一個元素的語法流程如下:
end($src_array)
在 PHP 中取得數組最後一個元素的方法有多種,但出於需求,還是建議使用某些方法。 PHP 中元素和陣列索引的取得和操作都是透過遍歷來完成的。因此,這取決於需要如何操作數據。
PHP中取得陣列最後一個元素的方法如下:
下面提到了不同的例子:
程式用於示範透過使用 end() 函數列印陣列的最後一個元素來檢索陣列的最後一個元素,如圖所示。來源數組的輸入是水果列表,要獲得的最後一個元素是 Banana,如輸出所示。
代碼:
<?php $arr = array('Apple', 'Guava', 'Banana'); echo end($arr); ?>
輸出:
該程式演示了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 中的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:
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:
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.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中文網其他相關文章!