0

所以我知道基本的 PHP,不久前我编写了一个基本的 mysql/php 库存系统。我想获得更多经验。我的想法是获取 reddit 评论,将它们显示在页面上,然后将它们保存在数据库中。我的问题是我不知道如何获取和理解 JSON 数据。

例如,这是一个指向 reddit 线程的 JSON 链接:http ://www.reddit.com/r/blog/comments/117ckb/introducing_three_new_hires/.json

目标

输入框 -> 输入框中的 reddit 唯一线程 ID (http://www.reddit.com/r/blog/comments/<6 位唯一 ID>) -> 在页面上加载 reddit 评论

这是我目前的目标,非常感谢在处理 JSON 时朝着正确的方向轻推。我知道我可以只用谷歌搜索它,但我发帖是希望有人有上述经验并提供他们在该主题上的专业知识。

4

1 回答 1

0

Here's a starting point:

$download=json_decode(file_get_contents('http://www.reddit.com/r/blog/comments/117ckb/introducing_three_new_hires/.json'));

    foreach ($download as $articles){

         foreach ($articles->data->children as $article){

                 print_r($article);
                   }
             }

Please note: I recommend using Curl instead of get_file_contents() - it's a lot faster!

于 2012-11-04T09:27:16.870 回答