PHP/Krumo:访问数组中的数组?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没有误解你的问题,你的解决方案是:
print_r() 版本也许也会有帮助
If I'm not misunderstanding your question your solution would be:
A print_r() version would help too, maybe