我正在为班级组织一个项目,该项目与连续聚合推文有关,以创建一个线性的众包故事。我目前有一个半工作程序,问题是程序首先显示最新的推文 - 我需要对这些推文进行排序,以使它们按时间戳显示,从最早到最新。这是代码:
<?php
$url = 'http://search.twitter.com/search.json?q=%23tweetstoryproj&lang=en&rpp=100';
$jsontwitter = file_get_contents($url);
$twitter = json_decode($jsontwitter, true);
$twittertext = $twitter["results"];
foreach($twittertext as $text){
$text = str_replace("#tweetstoryproj", "", $text);
echo $text['text'].'';
}
?>
非常感谢您的帮助,如果您想为故事做出贡献,请在推特上添加标签:#tweetstoryproj