處理 PHP JSON 物件中的資料
如果您了解物件的結構,那麼在 PHP 中處理 JSON 資料會很簡單。以從 Twitter 搜尋 API 取得趨勢為例:
<code class="php">$jsonurl = "http://search.twitter.com/trends.json"; $json = file_get_contents($jsonurl,0,null,null); $json_output = json_decode($json);</code>
產生的 $json_output 是一個 stdClass 對象,其屬性名稱為 trend,其中包含一個 stdClass 物件數組,每個物件代表一個趨勢。
要專門存取趨勢名稱,您可以使用 foreach 循環:
<code class="php">foreach ( $json_output->trends as $trend ) { echo "{$trend->name}\n"; }</code>
此程式碼將輸出趨勢名稱列表,每行一個。
以上是如何處理 PHP JSON 物件中的資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!