0

我正在尝试使用 PHP 的 foreach() 循环从 Reddit JSON API 中提取标题和 url。这是在 print_r 中使用时 JSON 输出的内容。

这是我到目前为止的代码......

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

1 回答 1

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'];
}
于 2013-05-07T04:49:55.190 回答