尝试使用 PHP 访问我的 twitter 提要时,我得到了这个结果:
Sat Apr 07 07:29:11 +0000 2012
我怎样才能改变它,所以它只是“ Apr 07
”?
我正在使用的代码:
$tweets = getTweets("http://twitter.com/status/user_timeline/justinbieber.json?count=3");
foreach($tweets as $tweet) {
$time = $tweet->created_at;
}