我如何從JSON對象中的數據,因爲這與PHP?:如何在PHP中獲取JSON數據?
[
{
"name": "Anders",
},
{
"name": "Chris",
},
{
"name": "Peter",
}
]
這是PHP代碼,我有:
$url = 'http://urltotheapi';
$content = file_get_contents($url);
$json = json_decode($content, true);
哦,我忘了,我想要顯示每個名字。 – anderskristo
那又如何?這就是'foreach()'的用處。 –