web-dev-qa-db-ja.com

PHP JSONオブジェクトのデータの処理

JSONのTwitter Search APIからのトレンドデータ。

以下を使用してファイルを取得します。

$jsonurl = "http://search.Twitter.com/trends.json";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);

このオブジェクトのデータをどのように処理しますか。配列として?本当に必要なのは、[名前]値からデータを抽出することだけです。

JSONオブジェクトに含まれるもの:

stdClass Object
(
    [trends] => Array
        (
            [0] => stdClass Object
                (
                    [name] => Vote
                    [url] => http://search.Twitter.com/search?q=Vote
                )

            [1] => stdClass Object
                (
                    [name] => Halloween
                    [url] => http://search.Twitter.com/search?q=Halloween
                )

            [2] => stdClass Object
                (
                    [name] => Starbucks
                    [url] => http://search.Twitter.com/search?q=Starbucks
                )

            [3] => stdClass Object
                (
                    [name] => #flylady
                    [url] => http://search.Twitter.com/search?q=%23flylady
                )

            [4] => stdClass Object
                (
                    [name] => #votereport
                    [url] => http://search.Twitter.com/search?q=%23votereport
                )

            [5] => stdClass Object
                (
                    [name] => Election Day
                    [url] => http://search.Twitter.com/search?q=%22Election+Day%22
                )

            [6] => stdClass Object
                (
                    [name] => #PubCon
                    [url] => http://search.Twitter.com/search?q=%23PubCon
                )

            [7] => stdClass Object
                (
                    [name] => #defrag08
                    [url] => http://search.Twitter.com/search?q=%23defrag08
                )

            [8] => stdClass Object
                (
                    [name] => Melbourne Cup
                    [url] => http://search.Twitter.com/search?q=%22Melbourne+Cup%22
                )

            [9] => stdClass Object
                (
                    [name] => Cheney
                    [url] => http://search.Twitter.com/search?q=Cheney
                )

        )

    [as_of] => Mon, 03 Nov 2008 21:49:36 +0000
)
85
Martin Wright

こんな感じ?

<?php

$jsonurl = "http://search.Twitter.com/trends.json";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);

foreach ( $json_output->trends as $trend )
{
    echo "{$trend->name}\n";
}
147
Peter Bailey

json_decode($string, true)を使用すると、オブジェクトは取得されませんが、すべてが連想配列または数値インデックス付き配列として取得されます。 PHPが提供するstdObjectは、パブリックプロパティを備えたダムコンテナにすぎず、独自の機能で拡張することはできないため、処理が簡単です。

$array = json_decode($string, true);

echo $array['trends'][0]['name'];
35
Sven

定義したオブジェクトのように使用します。つまり.

$trends = $json_output->trends;
8
Zak