因此,我正在通过 PHP 以 JSON 格式提取用户的推文流。我想将它解码为关联数组或至少一些更有用的方式而不是字符串,以便我可以通过它进行操作。
我一直在疯狂地阅读关于 json_decode 的内容,但对我来说,在我使用它之前和之后,文件的内容仍然被检测为一个长字符串。谁能帮我弄清楚我做错了什么?
$url = "http://twitter.com/status/user_timeline/" . $username . ".json?count=" . $count . "&callback=?";
// $url becomes "http://twitter.com/status/user_timeline/steph_Rose.json?count=5&callback=?";
$contents = file_get_contents($url);
$results = json_decode($contents, true);
echo "<pre>";
print_r($results);
echo "</pre>";
echo gettype($results); // this returns string