显示最近的Twitter条目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示最近的Twitter条目相关的知识,希望对你有一定的参考价值。

  1. <?php
  2. // Your twitter username.
  3. $username = "TwitterUsername";
  4. // Prefix - some text you want displayed before your latest tweet.
  5. // (html is OK, but be sure to escape quotes with backslashes: for example href="link.html")
  6. $prefix = "";
  7. // Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
  8. $suffix = "";
  9. $feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1";
  10. function parse_feed($feed) {
  11. $stepOne = explode("<content type="html">", $feed);
  12. $stepTwo = explode("</content>", $stepOne[1]);
  13. $tweet = $stepTwo[0];
  14. $tweet = str_replace(”&lt;”, “<”, $tweet);
  15. $tweet = str_replace(”&gt;”, “>”, $tweet);
  16. return $tweet;
  17. }
  18. $twitterFeed = file_get_contents($feed);
  19. echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);
  20. ?>

以上是关于显示最近的Twitter条目的主要内容,如果未能解决你的问题,请参考以下文章

PHP 显示X最新Twitter条目的数量

使用PHP显示最近的Twitter tweets

PHP Wordpress最后的Twitter条目

Wordpress上一个Twitter条目

Twitter Web 应用程序显示提及我的推文

Twitter api 1.1 图片未显示在提要中