PHP 用于Twitter搜索的SimpleXML代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 用于Twitter搜索的SimpleXML代码相关的知识,希望对你有一定的参考价值。
<?php
// Get the Twitter search results
$xml = simplexml_load_file("http://search.twitter.com/search.atom?q=vespa%20scooter");
// Prints the returned array to the page so you can see what's up
// print_r($xml);
?>
<ol id="search-results">
<?php
foreach($xml->entry as $e){
$status_link = $e->link[0]['href'];
$user_name = $e->author->name;
$user_link = $e->author->uri;
$thumb = $e->link[1]['href'];
?>
<li class="hentry status search_result">
<span class="thumb vcard author">
<a class="tweet-url profile-pic" href="<?=$user_link?>"><img alt="" src="<?=$thumb?>" width="48" height="48" /></a>
</span>
<span class="status-body">
<a class="tweet-url screen-name" href="<?=$user_link?>"><?=$user_name?></a>
<span id="msgtxt6185685937" class="msgtxt en"><?=$e->content?></span>
</span>
</li>
<?php } ?>
</ol>
以上是关于PHP 用于Twitter搜索的SimpleXML代码的主要内容,如果未能解决你的问题,请参考以下文章
来自 Twitter 的 PHP XML 提要使用情况
获取最新Twitter状态
使用 php SimpleXML 解析 XML 命名空间
使用 php SimpleXML 解析 XML 命名空间
使用simplexml处理xml文件的Tips
Twitter获取搜索推文API不适用于哈希标签