2013-05-07 2 views

ответ

4
$string_reddit = file_get_contents("http://reddit.com/hot.json"); 
$json = json_decode($string_reddit, true); 

$children = $json['data']['children']; 
foreach ($children as $child){ 
    $title = $child['data']['title']; 
    $url = $child['data']['url']; 
} 
+0

Я добавил ECHO ($ название); echo "
"; и это только, кажется, выводит первую и последнюю записи в .json. – Harry

+0

А, я пропустил интерпретацию структуры. Мой ответ обновлен. – luttkens