返回 PHP 多维数组中最后一个数组的元素

发布于 2024-12-01 18:33:15 字数 653 浏览 1 评论 0原文

如何在 PHP 中动态显示最后一个数组中的元素。 例如:

Array ( [0] => Array ( [id] => 6 [user_id] => 8 [category_path] => Sport)
        [1] => Array ( [id] => 8 [user_id] => 8 [category_path] => Computers))

为了从最后一个数组返回“id”

8

对于下一个示例

Array ( [0] => Array ( [id] => 6 [user_id] => 8 [category_path] => Sport)
        [1] => Array ( [id] => 8 [user_id] => 5 [category_path] => Computers)
        [2] => Array ( [id] => 16 [user_id] => 45 [category_path] => Soft))

为了返回

   16

谢谢!

How to display an element from the last array dynamically in PHP.
For example:

Array ( [0] => Array ( [id] => 6 [user_id] => 8 [category_path] => Sport)
        [1] => Array ( [id] => 8 [user_id] => 8 [category_path] => Computers))

in order to return the "id" from the last array

8

And for the next example

Array ( [0] => Array ( [id] => 6 [user_id] => 8 [category_path] => Sport)
        [1] => Array ( [id] => 8 [user_id] => 5 [category_path] => Computers)
        [2] => Array ( [id] => 16 [user_id] => 45 [category_path] => Soft))

in order to return

   16

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋千易 2024-12-08 18:33:15

试试这个:

function getLastId(&$array){
    $tmp=end($array);
    return $tmp['id'];
}

Try this:

function getLastId(&$array){
    $tmp=end($array);
    return $tmp['id'];
}
披肩女神 2024-12-08 18:33:15

像这样计算元素并访问它们怎么样?

$array[count($array)-1] # to get the last array item
$array[count($array)-1]['id'] # to get the id of the last entry

How about counting the elements and accessing them like this?

$array[count($array)-1] # to get the last array item
$array[count($array)-1]['id'] # to get the id of the last entry
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文