6

晚上的人。

首先要说的是,我已经阅读了如何使用 SimpleXML 解析包含自定义命名空间的 XML?.

我不介意从源解析 XML 文档,它们使用自定义命名空间。

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:moshtix="http://www.moshtix.com.au">
  <channel>
   <item>
    <link>qweqwe</link>
    <moshtix:genre>asdasd</moshtix:genre>
...

例如。当我使用 SimpleXML 解析时,没有 mostix: 命名空间元素显示或可访问。可能是一个非常简单的解决方案,但是有什么想法吗?

4

1 回答 1

7

通常,人们使用children()

$rss = simplexml_load_string(
    '<?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>'
);

foreach ($rss->channel as $channel)
{
    echo 'link: ', $channel->link, "\n";
    echo 'genre: ', $channel->children('moshtix', true)->genre, "\n";
}
于 2010-01-20T00:26:15.157 回答