PHP Twitter RSS循环

Posted

tags:

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

<?php
					try {
						$feed = 'http://twitter.com/statuses/user_timeline/41635238.rss';
						$xml = new SimpleXMLElement(file_get_contents($feed));
						for($i=0; $i < 5; $i++){
							print '<p class="feeditem"><a href="'.$xml->channel->item[$i]->link.'">'.ltrim($xml->channel->item[$i]->description, 'shuffleInteract:').'</a><br /><span>Posted on '.date('F jS, Y', strtotime($xml->channel->item[$i]->pubDate)).'</span></p>';
						}
					} catch(Exception $e){}
				?>

以上是关于PHP Twitter RSS循环的主要内容,如果未能解决你的问题,请参考以下文章

PHP Twitter - 打印用户的最新推文(PHP提取RSS源并链接链接)

PHP Twitter RSS Feed Parser在网站上显示推文(包括缓存)

侧边栏和Twitter中的RSS阅读器。

Twitter-打印用户的最新tweet(摘自PHP中的RSS提要和linkifies链接)

PHP Wordpress - 获取RSS源,显示带循环的项目

使用PHP获取您最近的Twitter状态