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中文网其他相关文章!