-1

到目前为止,事情进展顺利,我查看了有关特定主题标签(例如#jb)的所有信息,我正确查看了它,并看到了具有特定元素(例如“created_at”等)的不同数组的负载。

我试图通过这样做来定位特定元素echo $decode[0]['created_at']."<br>"; 但它给了我一个错误“未定义的偏移量:第 6 行 C:\xampp\htdocs\test\hashtag.php 中的 0” - 我认为我一直在走正确的路线,直到这个,任何指导将不胜感激

可以在此处查看有关数组的特性http://search.twitter.com/search.json?q=%23jb

问候

<?php
$json = file_get_contents("http://search.twitter.com/search.json?q=%23jb", true); //getting the file content
$decode = json_decode($json, true); //getting the file content as array

echo "<pre>";
echo $decode[0]['created_at']."<br>"; //user location
echo "</pre>";
?>
4

1 回答 1

3

你需要:

echo "<pre>";
echo $decode['results'][0]['created_at']."<br>"; //user location
echo "</pre>";

我认为。但created_at不返回位置 - 它返回日期。

于 2013-02-06T21:28:51.773 回答