如何获取多维数组中的特定值?

发布于 2024-12-09 19:48:00 字数 495 浏览 0 评论 0原文

我该如何赞美这个?

$scope = $facebook->api('/me/permissions','GET');

结果如下,我想获取installed的值:

array(1) { ["data"]=> array(1) { [0]=> array(5) { ["installed"]=> int(1) ["offline_access"]=> int(1) ["email"]=> int(1) ["manage_pages"]=> int(1) ["user_about_me"]=> int(1) } } } 

我试过json_decode($scope, true),$scope['installed' ]$scope['data']['installed'] 等。我缺少什么?

How do I prase this?

$scope = $facebook->api('/me/permissions','GET');

The result is as follows and I want to get the value of installed:

array(1) { ["data"]=> array(1) { [0]=> array(5) { ["installed"]=> int(1) ["offline_access"]=> int(1) ["email"]=> int(1) ["manage_pages"]=> int(1) ["user_about_me"]=> int(1) } } } 

I've tried json_decode($scope, true), $scope['installed'], $scope['data']['installed'] etc. What am I missing?

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

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

发布评论

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

评论(2

爱要勇敢去追 2024-12-16 19:48:00

这是一个超级嵌套数组 - 您的 $scope['data']['installed'] 很接近。然而,你忘记了一层。它应该是 $scope['data'][0]['installed']。请注意其中的 0 - 还有第三级。

访问任何范围都将从 $scope['data'][0] 开始,因此我会将其分配给一个新的 var 以删除这两层。

$scope = $scope['data'][0]

然后,您所需要的只是权限的密钥

That is a super nested array - Your $scope['data']['installed'] was close. However, you forgot one layer. It should be $scope['data'][0]['installed']. Note the 0 in there - there is a third level.

Accessing any of the scope will start with $scope['data'][0], so I would assign that to a new var to remove those two layers.

$scope = $scope['data'][0]

Then, all you need is the key for the permission

静水深流 2024-12-16 19:48:00

尝试$scope['data'][0]['installed']

Try $scope['data'][0]['installed']

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