PHP/Krumo:访问数组中的数组?

发布于 2024-08-18 16:14:11 字数 415 浏览 1 评论 0原文

我使用 krumo 从页面输出数据,所有数据都可以通过 $page 变量访问。我有一个名为 customer 的字段,其结构如下:

customer (Array, 1 element) 
    0 (Array, 1 element) 
        id (String, 2 characters ) 85

我如何实际访问 id?我已经尝试过 $page->customer->id 但它不起作用。在与客户相同的级别上,有一个名为 foo 的字符串字段,我可以使用 $page->foo 访问它 - 那么为什么我的方法不起作用?

I'm using krumo to output data from a page, all the data is accessible through the $page variable. I have a field called customer with the following structure:

customer (Array, 1 element) 
    0 (Array, 1 element) 
        id (String, 2 characters ) 85

How do i actually access id? I've tried $page->customer->id but it doesn't work. On the same level as customer, there's a string field called foo which I can access using $page->foo - so why doesn't my approach work?

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

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

发布评论

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

评论(1

ㄖ落Θ余辉 2024-08-25 16:14:11

如果我没有误解你的问题,你的解决方案是:

$id=$page->customer[0]['id'];

print_r() 版本也许也会有帮助

If I'm not misunderstanding your question your solution would be:

$id=$page->customer[0]['id'];

A print_r() version would help too, maybe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文