假设我有以下XML(这是ATOM的标准)
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Example Feed</title>
<subtitle>A subtitle.</subtitle>
<link href="http://example.org/feed/" rel="self" />
<link href="http://example.org/" />
<id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
<updated>2003-12-13T18:30:02Z</updated>
<entry>
<title>Atom-Powered Robots Run Amok</title>
<link href="http://example.org/2003/12/13/atom03" />
<link rel="alternate" type="text/html" href="http://example.org/2003/12/13/atom03.html"/>
<link rel="edit" href="http://example.org/2003/12/13/atom03/edit"/>
<id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
<updated>2003-12-13T18:30:02Z</updated>
<summary>Some text.</summary>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<p>This is the entry content.</p>
</div>
</content>
<author>
<name>John Doe</name>
<email>johndoe@example.com</email>
</author>
</entry>
</feed>
另外,假设上述XML位于地址为http://www.example.com/atom.xml
我知道您可以通过以下代码获取根元素名称:
// Using curl to access the page
$ch = curl_init('http://www.example.com/atom.xml');
curl_setopt($ch, CURLOPT_NOBODY, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
$xml = new SimpleXmlElement($result);
$root = $xml->getName();
echo ($root) // This prints "feed", which is the root element
另外,我知道以下调用将获取所有根名称空间。
$xml->getNamespaces(true)
在我们的例子中,返回值是:
Array
(
[] => http://www.w3.org/2005/Atom
)
但是,我真的很想知道名称空间的名称。换句话说,我不知道哪个函数可以调用 xmlns 。我如何知道命名空间的名称?我需要它在处理之前进行一些验证。
请帮助,谢谢。
答案 0 :(得分:2)
&#34;但是,我真的很想知道名称空间的名称。换句话说,我不知道哪个函数可以调用 xmlns &#34; 。
xmlns
是名称空间声明的默认属性名称的XML语法。目前还不清楚你要验证的是什么,但我认为如果getNamespaces()
返回名称空间哪个前缀为空,那么源XML就有了一个有效的默认命名空间(在其他中)是安全的。单词,源XML有 xmlns )。
引自W3C&#34; Namespaces in XML&#34;为便于参考:
如果属性名称与
DefaultAttName
匹配,则属性值中的命名空间名称是声明附加到的元素范围内的默认命名空间的名称。在这种默认声明中,属性值可以为空。声明的默认名称空间和覆盖在&#34; 5中讨论。将命名空间应用于元素和属性&#34;。 [Default Namespace]
[3]
DefaultAttName
:: =&#39; xmlns&#39; 。 [Default Attribute Name]