Obsługa danych w obiekcie JSON PHP

85

Dane Trendów z Twitter Search API w formacie JSON.

Pobieranie pliku za pomocą:

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

Jak pracować z danymi z tego obiektu. Jako tablica? Naprawdę wystarczy wyodrębnić dane z wartości [nazwa].

Obiekt JSON zawiera:

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
)

źródło

Odpowiedzi:

146

Masz na myśli coś takiego?

<?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";
}
Peter Bailey
źródło
czy są jakieś inne sposoby uzyskania listy nazw bez zapętlania, na przykład $ trendy ["nazwa"] lub $ trendy [] ["nazwa"]?
Min Soe
35

Jeśli używasz json_decode($string, true), nie otrzymasz żadnych obiektów, ale wszystko jako tablicę asocjacyjną lub indeksowaną liczbowo. O wiele łatwiejszy w obsłudze, ponieważ stdObject dostarczany przez PHP to nic innego jak głupi kontener z publicznymi właściwościami, którego nie można rozszerzyć o własną funkcjonalność.

$array = json_decode($string, true);

echo $array['trends'][0]['name'];
Sven
źródło
8

Po prostu używaj go tak, jakby był obiektem, który zdefiniowałeś. to znaczy

$trends = $json_output->trends;
Zak
źródło