您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關php程序如何遍歷json數據,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、json_decode是php5.2.0之后新增的一個PHP內置函數,其作用是對JSON格式的字符串進行編碼。
2、接受JSON格式的字符串并且把它轉換為PHP變量。
當該參數$assoc為TRUE時,將返回array,否則返回object。
語法規則:
json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )
實例
<?php $str = '{ "10924": { "id": "10924", "title": "天津", "streamline_title": "狗不理", "unit": "點", "goods_type": "168", "goods_type_title": "包子" }, "10923": { "id": "10923", "title": "北京", "streamline_title": "王府井", "unit": "點", "goods_type": "104", "goods_type_title": "吃貨天堂" }, "11982": { "id": "11982", "title": "南京", "streamline_title": "夫子廟", "unit": "點", "goods_type": "351", "goods_type_title": "燈會" } }'; foreach (json_decode($str) as $v) { echo "{$v->id} {$v->title}"; //其他的一樣的 }
關于“php程序如何遍歷json數據”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。