使用json_decode 解析PHP 中的JSON 物件
嘗試在PHP 中解析JSON 資料時,了解JSON 資料時,了解返回的物件結構至關重要。 json_decode 函數(如下例所示)可用來將 JSON 資料轉換為 PHP 陣列或物件。
<br>$url = 'http://www.worldweatheronline.com/feed/weather.ashx?q=schruns,austria&format=json&num_of_days=5&key=8f2d1ea151085304102710]$ = file_get_contents($url);<br>$data = json_decode( $json, true);<br>
<p>foreach ($data['data']['weather'] as $item) {<br></p><pre class="brush:php;toolbar:false">print $item['date']; print ' - '; print $item['weatherDesc'][0]['value']; print ' - '; print '<img src="' . $item['weatherIconUrl'][0]['value'] . '" border="0" alt="" />'; print '<br>';
以上是如何使用 json_decode 解析 PHP 中的 JSON 物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!