试图从用户返回过去 24 小时内的所有推文,但不知道该怎么做,这是我目前拥有的代码,只是为了获取最后 5 条推文,不知道下一步该怎么做.. .
谢谢马特。
<?php
$username = "MelbournePollen";
$count = 5;
$tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/".$username.".json?count=".$count."" ));
for ($i=1; $i <= $count; $i++){
//Assign feed to $feed
$feed = $tweet[($i-1)]->text;
echo date("M \- j",strtotime($tweet[($i-1)]->created_at)). " -- " .$feed. "</br>";
}?>