标签: php arrays
我想在PHP中获取数组的最后一个元素。
我经常这样做:
$last = $this->array_of_stuff[count($this->array_of_stuff) - 1];
虽然我对此并不满意。
如何缩短语法并避免重复代码?
答案 0 :(得分:6)
在这种情况下,您可以使用end功能。 See the manual
end
end($array)
答案 1 :(得分:2)
您可以使用end()
end()
<?php $a = array("a", "b", "c"); echo end($a);
https://eval.in/188679