简单的 Twitter API PHP 问题
这应该相当容易,但我认为我有点愚蠢......
我想从 twitter:places 获取全名 - 有人可以帮助我吗?
为了获取其他元素,我使用 $entry->title 例如,但 $entry->twitter:places->full_name 不起作用。
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:google="http://base.google.com/ns/1.0" xml:lang="en-US" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com/">
<id></id>
<link type="text/html" href="http://search.twitter.com/search?q=" rel="alternate"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=" rel="self"/>
<title>Twitter Search</title>
<link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?&since_id=" rel="refresh"/>
<updated>2011-06-01T18:32:50Z</updated>
<openSearch:itemsPerPage>15</openSearch:itemsPerPage>
<entry>
<id></id>
<published>2011-06-01T18:32:50Z</published>
<link type="text/html" href="" rel="alternate"/>
<title></title>
<content type="html"></content>
<updated>2011-06-01T18:32:50Z</updated>
<link type="image/png" href="" rel="image"/>
<twitter:geo>
</twitter:geo>
<twitter:metadata>
<twitter:result_type>recent</twitter:result_type>
</twitter:metadata>
<twitter:place>
<twitter:id></twitter:id>
<twitter:full_name>London</twitter:full_name>
<twitter:type>city</twitter:type>
</twitter:place>
<twitter:source></twitter:source>
<twitter:lang>en</twitter:lang>
<author>
<name></name>
<uri></uri>
</author>
</entry>
</feed>
有人可以帮忙吗!?
This should be fairly easy, but I think I am being a bit stupid ....
I want to get the full_name from twitter:places - can anyone help me please?
To get the other elements I use $entry->title for example, but $entry->twitter:places->full_name doesnt work.
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:google="http://base.google.com/ns/1.0" xml:lang="en-US" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns="http://www.w3.org/2005/Atom" xmlns:twitter="http://api.twitter.com/">
<id></id>
<link type="text/html" href="http://search.twitter.com/search?q=" rel="alternate"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?q=" rel="self"/>
<title>Twitter Search</title>
<link type="application/opensearchdescription+xml" href="http://search.twitter.com/opensearch.xml" rel="search"/>
<link type="application/atom+xml" href="http://search.twitter.com/search.atom?&since_id=" rel="refresh"/>
<updated>2011-06-01T18:32:50Z</updated>
<openSearch:itemsPerPage>15</openSearch:itemsPerPage>
<entry>
<id></id>
<published>2011-06-01T18:32:50Z</published>
<link type="text/html" href="" rel="alternate"/>
<title></title>
<content type="html"></content>
<updated>2011-06-01T18:32:50Z</updated>
<link type="image/png" href="" rel="image"/>
<twitter:geo>
</twitter:geo>
<twitter:metadata>
<twitter:result_type>recent</twitter:result_type>
</twitter:metadata>
<twitter:place>
<twitter:id></twitter:id>
<twitter:full_name>London</twitter:full_name>
<twitter:type>city</twitter:type>
</twitter:place>
<twitter:source></twitter:source>
<twitter:lang>en</twitter:lang>
<author>
<name></name>
<uri></uri>
</author>
</entry>
</feed>
Can anyone help please!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要处理带前缀的元素(表示非默认命名空间),您可以按命名空间过滤:
或按绑定前缀:
您的另一个选择是使用 XPath:
如果您想使用精确的 XPath,它会变得更加复杂,因为您的路径中有不同的命名空间:
XML 命名空间前缀通常是任意的——重要的是命名空间(正如我们在上面的代码中绑定我们想要的任何前缀的能力所表明的那样)。
To deal with the prefixed elements (which indicate a non-default namespace), you can filter by namespace:
or by bound prefix:
Your other option would be to use XPath:
If you want to use an exact XPath, it gets more complicated, since there are different namespaces in your path:
XML namespace prefixes are generally arbitrary--the important thing is the namespace (as indicated by our ability to bind whatever prefix we want in our code above).