0
我提出和FQL查詢,並將其保存到一個數組提取值
$resultposts = $facebook->api(array('method' => 'fql.query',
'query' => $fqlQueryposts));
要提取的名稱值我用這個:
echo $resultposts['first_name'];
但我有問題「媒體「數組,它是」附件「數組。這是結構:$resultposts>attachment>media>
我應該從「媒體」數組中提取「type」,「src」和「href」值。
我試過這樣:
$resultposts['attachment']['media']['type'];
但它不工作。錯誤是「未定義索引:類型」。
我該怎麼辦?謝謝