PHP 显示最新的Twitter条目

Posted

tags:

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

<?php
// Your twitter username.
$username = "TwitterUsername";
// Prefix - some text you want displayed before your latest tweet.
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")
$prefix = "";
// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
$suffix = "";
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1";
function parse_feed($feed) {
$stepOne = explode("<content type=\"html\">", $feed);
$stepTwo = explode("</content>", $stepOne[1]);
$tweet = $stepTwo[0];
$tweet = str_replace(”<”, “<”, $tweet);
$tweet = str_replace(”>”, “>”, $tweet);
return $tweet;
}
$twitterFeed = file_get_contents($feed);
echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);
?>

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

显示最近的Twitter条目

PHP Wordpress最后的Twitter条目

django 模型中每个类别的最新条目

Wordpress上一个Twitter条目

PHP 使用PHP获取最新的Twitter状态

使用 PHP 获取我最新的 Twitter 帖子