PHP 命名空间 SimpleXML 挑战
问题:
解析使用自定义命名空间的 XML 时SimpleXML,这些命名空间内的元素无法访问。
XML 结构:
<code class="xml"><?xml version="1.0" encoding="utf-8"?> <rss version="2.0" xmlns:moshtix="http://www.moshtix.com.au"> <channel> <link>qweqwe</link> <moshtix:genre>asdasd</moshtix:genre> </channel> </rss></code>
解决方案:
访问元素在自定义命名空间中,使用 child() 方法并将命名空间 URL 作为第一个参数。
<code class="php">$rss = simplexml_load_string($xmlString); foreach ($rss->channel as $channel) { echo 'link: ', $channel->link, "\n"; echo 'genre: ', $channel->children('moshtix', true)->genre, "\n"; }</code>
输出:
link: qweqwe genre: asdasd
此方法允许您定位和访问其中的元素指定的命名空间,使得解析具有复杂命名空间结构的XML变得更加容易。
以上是如何使用 SimpleXML 访问自定义命名空间中的元素?的详细内容。更多信息请关注PHP中文网其他相关文章!