如何在数组中获取php中的数组对象元素

发布于 2024-12-01 15:13:12 字数 335 浏览 2 评论 0原文

我正在浏览一个 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 技术交流群。

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

发布评论

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

评论(1

温折酒 2024-12-08 15:13:12

请研究有关数组的 PHP 手册 http://php.net/manual/en/ language.types.array.php - 第三个示例演示如何访问嵌套数组内容。

在你的情况下,它会是:

print $someObj->details["city"];

print $someObj->details["details"]["have_vehicle"];

无法告诉其余的,因为你的输出粘贴不完整。

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:

print $someObj->details["city"];

print $someObj->details["details"]["have_vehicle"];

Can't tell for the rest, as your output paste is incomplete.

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