目前在我看来我可以拉每个帖子(我目前正在搞乱日期,如果有人知道如何快速格式化请告诉:D)
我的观点目前看起来像这样:
<?php
// Show tweet text
foreach ($this->twitterfeed as $post) {
echo '<p><time> '.$post->created_at . '</time> ';
echo $post->text . ' ';
echo '</p><br/>';
}
?>
显然$ post-&gt;文字正在拉文章部分,但是如何拉取用户个人资料图片呢?
答案 0 :(得分:0)
$post->profile_image_url
应该为您提供头像网址,您应该能够通过created_at
首先运行strtotime()
来格式化{{1}},以便为您提供UNIX时间戳。