繁体   English   中英

如何访问嵌套数组:不能将stdClass类型的对象用作数组

[英]How access to Nested Arrays: Cannot use object of type stdClass as array

我目前正在从事一个项目,在该项目中,用户的关注者以类似于下面的数组的形式分配给我: http : //pastebin.com/304iPm4L

数组:

object(stdClass)#2 (3) { 
["pagination"]=> object(stdClass)#3 (2) 
    { 
    ["next_url"]=> string(146) "DATA"
    ["next_cursor"]=> string(13) "DATA" 
    } 
["meta"]=> object(stdClass)#4 (1) 
    { 
    ["code"]=> int(200) 
    } 
["data"]=> array(9) 
    { 
    [0]=> object(stdClass)#5 (4) 
        { 
        ["username"]=> string(7) "twurked" 
        ["profile_picture"]=> string(106) "https://igcdn-photos-g-a.akamaihd.net/hphotos-ak-xaf1/t51.2885-19/11055444_697242820403478_108851570_a.jpg" 
        ["id"]=> string(9) "307611076" 
        ["full_name"]=> string(20) "#twurked For Reposts" 
        } 
    [1]=> object(stdClass)#6 (4) 
        {
         ["username"]=> string(12) "itsmarziapie" 
        ["profile_picture"]=> string(107) "https://igcdn-photos-b-a.akamaihd.net/hphotos-ak-xfa1/t51.2885-19/10735354_634448103338889_1219780551_a.jpg" 
        ["id"]=> string(9) "415505158" 
        ["full_name"]=> string(15) "Marzia Bisognin" 
        } 
    [2]=> object(stdClass)#7 (4) 
        { 
        ["username"]=> string(11) "briankgrubb" 
        ["profile_picture"]=> string(107) "https://igcdn-photos-d-a.akamaihd.net/hphotos-ak-xpa1/t51.2885-19/10518270_1508565329429347_713909002_a.jpg" 
        ["id"]=> string(8) "28307611" 
        ["full_name"]=> string(11) "Brian Grubb" 
        } 
    [3]=> object(stdClass)#8 (4) 
        { 
        ["username"]=> string(16) "redbulladventure" 
        ["profile_picture"]=> string(106) "https://igcdn-photos-d-a.akamaihd.net/hphotos-ak-xaf1/t51.2885-19/11007825_728249480627075_348216069_a.jpg" 
        ["id"]=> string(10) "1721797894" 
        ["full_name"]=> string(18) "Red Bull Adventure" 
        } 
     } 
}

我想做的是获取每个用户的username值并将其输出到屏幕。

因此,我想到的是,我可以轻松地(或我认为...)遍历结果并仅在每个嵌套数组中输出username值。

我使用以下代码:

$i = 1;
while ($i <= 10) {
    $instagram->getUserFollows('self',10)->data[$i]["username"]; 
    echo "<br/>";
    $i++;
}

$instagram->getUserFollows('self',10)数组是您在pastebin中看到的。 通过查看我的嵌套数组,似乎我需要一个数字,然后需要["username"]才能访问每个用户名。

从理论上讲, $instagram->getUserFollows('self',10)->data["1"]["username"]; 应该输出itsmarziapie

但是,当我运行上面的代码时,我得到了:

Cannot use object of type stdClass as array

此错误是什么意思,为什么我不能将我的username数据循环到屏幕上?

此时,我已经进行了大约2.5个小时的故障排除,现在正在寻求大家的指导。 我知道有很多关于同一错误的问题,但是没有一个像这个一样包含嵌套数组,所以我有点迷失了。

感谢您帮助我指出正确的方向:)

您可以使用此:

//You request 10 objects but you don't know if there are really 10
    $info = $instagram->getUserFollows('self',10);

//How many objects?
    $qty = count($info->data);

/* You can't assume that there are 10 objects (I refer to your code, 
 * you have 9 objects and you try to access to 10 objects)    
 */
    for($i = 0; $i < $qty ; $i++) { 
      echo $info->data[$i]->username . "<br>";
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM