首頁 >後端開發 >php教程 >如何處理 PHP JSON 物件中的資料?

如何處理 PHP JSON 物件中的資料?

Susan Sarandon
Susan Sarandon原創
2024-10-19 10:20:30540瀏覽

How do I Handle Data in a PHP JSON Object?

處理 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn