使用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>
要存取該物件的數據,我們可以循環存取它的trends屬性,它是一個標準物件的陣列。每個物件都有一個代表趨勢名稱的 name 屬性。
以下是提取和顯示趨勢名稱的方法:
<code class="php">foreach ( $json_output->trends as $trend ) { echo "{$trend->name}\n"; }</code>
此程式碼將列印趨勢名稱列表,其中包含每個名稱以換行符分隔。
以上是如何在 PHP 中利用 JSON 物件進行高效資料處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!