PHP 查询库。并解析 XML
我开始使用 phpquery 这个东西,但我迷失在所有的文档中。 如果有人不知道我在说什么:http://code.google.com/ p/phpquery/
我的问题非常基本。 我成功加载了 XML 文档,现在我想解析其中的所有标签。
使用 pq()->find('title')
我可以输出标题标签内的所有内容。伟大的!
但我想将每个
希望你能理解这个问题。 蒂亚!
I started using the phpquery thingy, but I got lost in all that documentation.
In case someone does not know what the hell I am talking about: http://code.google.com/p/phpquery/
My question is pretty much basic.
I succeeded at loading an XML document and now I want to parse all the tags from it.
Using pq()->find('title')
I can output all of the contents inside the title tags. Great!
But I want to throw every <title>
tag in a variable. So, lets say that there are 10 <title>
tags, I want every one of them in a separate variable, like: $title1
, $title2
... $title10
. How can this be done?
Hope you understand the question.
TIA!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以这样做:
例如,如果
$content
中有 3 个标题,则var_dump
将输出:You could do it like this:
For example if there are 3 titles in the
$content
thisvar_dump
will output: