使用 SimpleXML 获取 Twitter 提要并显示信息
基于线程With PHP preg_match_all, get value of href,我正在尝试从 Twitter 源中获取一些信息。
以下是提要网址(用于测试目的): Twitter feed< /a>
这是我的代码:
function parse_feed($process) {
$xml = @simplexml_load_string($process);
$findTweet = $xml['entry'];
return $findTweet;
}
$username = 'tweet';
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=2";
$feed = file_get_contents($feed);
//echo $feed;
print_r(parse_feed($feed));
我以前从未使用过 SimpleXML 或使用过 XML。
有人可以帮我吗?
Based on the thread With PHP preg_match_all, get value of href, I'm trying to get some information from a twitter feed.
Here is the feed url (for testing purpose): Twitter feed
Here is my code:
function parse_feed($process) {
$xml = @simplexml_load_string($process);
$findTweet = $xml['entry'];
return $findTweet;
}
$username = 'tweet';
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=2";
$feed = file_get_contents($feed);
//echo $feed;
print_r(parse_feed($feed));
I never used SimpleXML before or worked with XML.
Can someone help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个网站可能是一个好的开始 http://www.php.net/手册/en/simplexml.examples-basic.php
this site might be a good start http://www.php.net/manual/en/simplexml.examples-basic.php
好吧,Fouf it!,这是感兴趣的人的解决方案......
感谢 m1k3y02 提供的文档!
Okay Founf it!, here is the solution for who is interested...
Thanks to m1k3y02 for the docs!