5

我正在尝试获取此结构显示的十二个 ID:

stdClass Object
(
    [checkins] => stdClass Object
        (
            [count] => 12
            [items] => Array
                (
                    [0] => stdClass Object
                        (

                            [venue] => stdClass Object
                                (
                                    [id] => 4564654646456
                                    .
                                    .

我愿意:

$checkins = $fsObjUnAuth->get("/users/self/checkins");
$count = $checkins ->response->checkins->count;  // so I can  get 12

 for( $i = 0; $i < $count; $i ++)
  {
      $a1[] = $checkins['items'][$i]['venue']['id'];  //two tries
      $a2[] = $checkins ->response->checkins->items->$i->venue->id;
        echo $i; echo ": ";
        echo $a1;echo"<br>";
        echo $a2;echo"<br>"
  } 

但我得到:致命错误:不能将 stdClass 类型的对象用作行中的数组..

请有人可以告诉我如何做到这一点?

非常感谢

4

3 回答 3

9

您不能通过数组下标运算符访问对象成员[]

您必须使用->运算符:

$x = new StdClass();

$x->member = 123;

在您的情况下,您将不得不使用混合,因为您有一个对象 ( $checkins) 和一个成员 ( $items),它是一个数组,其中包含其他对象。

$a1[] = $checkins->items[$i]->venue->id;
于 2011-03-01T16:00:50.223 回答
2

这是一个简单的解决方案,用函数在 php 中转换数组中的stdClass 对象get_object_vars

看: http: //php.net/manual/fr/function.get-object-vars.php

前任 :

debug($array);
$var = get_object_vars($array);
debug($var);

或替换debugprint_r

我正在使用 CakePHP 框架

于 2013-04-19T09:59:06.117 回答
0

改变

$a1[] = $checkins['items'][$i]['venue']['id'];

变成

$a1[] = $checkins->items[$i]->venue->id; 
于 2011-03-01T16:03:31.643 回答