Twitter-打印用户的最新tweet(摘自PHP中的RSS提要和linkifies链接)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Twitter-打印用户的最新tweet(摘自PHP中的RSS提要和linkifies链接)相关的知识,希望对你有一定的参考价值。
Extracts the most recent tweet from the users RSS feed and auto-detects links.
function parse_feed($feed) { '/<description>(.*?)</description>/s', $feed, $tweets, PREG_SET_ORDER ); $tweet = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href="\0">\0</a>", $tweets[1][1]); return $tweet; } $feed = "http://twitter.com/statuses/user_timeline/26248137.rss"; echo parse_feed($twitterFeed); // Without the function and storing it in a user's cookie that is checked every 30min '/<description>(.*?)</description>/s', $feed, $tweets, PREG_SET_ORDER ); $tweet = ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]","<a href="\0">\0</a>", $tweets[1][1]); if (!$_COOKIE['lasttweet']) { echo $tweet; }else{ echo $_COOKIE['lasttweet']; }
以上是关于Twitter-打印用户的最新tweet(摘自PHP中的RSS提要和linkifies链接)的主要内容,如果未能解决你的问题,请参考以下文章
PHP Twitter - 打印用户的最新推文(PHP提取RSS源并链接链接)