PHP:获取数组最后一项的最快、最简单的方法是什么?
获取数组最后一项的最快、最简单的方法是什么,无论是索引数组、关联数组还是多维数组?
What is the fastest and easiest way to get the last item of an array whether be indexed array , associative array or multi-dimensional array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
打印“1”
prints "1"
array_pop()
它从数组末尾删除元素。如果需要保持数组完好无损,可以使用它,然后将值追加到数组的末尾。
$array[] = $popped_val
array_pop()
It removes the element from the end of the array. If you need to keep the array in tact, you could use this and then append the value back to the end of the array.
$array[] = $popped_val
试试这个:
try this:
我会说
array_pop
在文档中: array_popI would say
array_pop
In the documentation: array_pop很多很棒的答案。如果您多次执行此操作,请考虑编写一个函数:
或者,根据您的脾气:
(
$array[] = ...
优于array_push()
,参见文档。)Lots of great answers. Consider writing a function if you're doing this more than once:
Alternatively, depending on your temper:
(
$array[] = ...
is preferred toarray_push()
, cf. the docs.)对于关联数组:
编辑:也应该适用于数字索引数组
For an associative array:
Edit: should also work for numeric index arrays