我有一個JSON供稿,並且在供稿內部,供稿內部有一個數組,我可以正確輸出數組上的所有內容。JSON子陣列 - PHP解碼
JSON饋送輸出:用於輸出http://pastebin.com/pxiFVm1d
代碼:
$jsonurl = "LINK to feed";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
foreach ($json_output->results as $results)
{
echo "{$results->name}.<br />";
}
我如何輸出的photo_rerence
其是陣列的一部分(見引擎收錄)?
這是**解碼對象內的數組**。 –