一直試圖弄清楚這一點,但似乎無法做到。我正在研究一個調用API並解碼JSON響應的應用程序。我有這些數據,但我不能「工作」。下面是數據:通過多維stdclass對象和數組循環遍歷
stdClass Object ( [custom_fields] => Array ( [0] => stdClass Object ( [name] => Heading 1 [0] => stdClass Object ( [name] => sub_1-1 [caption] => SubHeading 1-1 ) [1] => stdClass Object ( [name] => sub_1-2 [caption] => SubHeading 1-2 ) ) [1] => stdClass Object ( [name] => Heading 2 [0] => stdClass Object ( [name] => sub_2-1 [caption] => SubHeading 2-1 ) ) ) [status] => 200 [version] => 1.3.2 )
什麼,我基本上是試圖做的是設置爲標題1,然後在第2個個子標題的表格。我可以使用$APIRESULT->custom_fields->name
獲得標題1,但我無法獲得子標題。我相信這很容易,我只是有一個障礙,但我放棄了,希望有人能在這裏真正幫助我。
在此先感謝。
可能的重複[如何訪問與像整數名稱對象屬性?](http://stackoverflow.com/questions/10333016/how-to -access-object-properties-with-names-like-integers) – deceze