如何在数组中获取php中的数组对象元素
我正在浏览一个 php 脚本,它有类似的内容
echo "<pre>";
var_export($someObj->details);
echo "</pre>";
,输出类似于: http://pastebin.com/gEAFg6R4< /a>
现在我如何获取特定的行,例如,如果我只想获取高度、是否有车辆以及是男性还是女性?什么是 var_export($someObj->details);正在做 ?
I am going through a php script which has something like this
echo "<pre>";
var_export($someObj->details);
echo "</pre>";
and the output is something like : http://pastebin.com/gEAFg6R4
now how do I fetch paricular lines for eg if I just want to fetch the height, if have vehicle or not and is male or female ? what is var_export($someObj->details); doing ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请研究有关数组的 PHP 手册 http://php.net/manual/en/ language.types.array.php - 第三个示例演示如何访问嵌套数组内容。
在你的情况下,它会是:
无法告诉其余的,因为你的输出粘贴不完整。
Please study the PHP manual on arrays http://php.net/manual/en/language.types.array.php - the third example shows how to access nested array contents.
In your case it would be:
Can't tell for the rest, as your output paste is incomplete.