Zend Twitter Feed如何提取用户个人资料图片以及帖子

时间:2013-09-12 13:19:24

标签: php image zend-framework twitter

目前在我看来我可以拉每个帖子(我目前正在搞乱日期,如果有人知道如何快速格式化请告诉: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;文字正在拉文章部分,但是如何拉取用户个人资料图片呢?

1 个答案:

答案 0 :(得分:0)

$post->profile_image_url应该为您提供头像网址,您应该能够通过created_at首先运行strtotime()来格式化{{1}},以便为您提供UNIX时间戳。