您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1288 复制当前网址

getDocNamespaces



PHP getDocNamespaces() 函数

定义和用法

getDocNamespaces() 函数从 SimpleXMLElement 对象返回在 XML 文档中声明的命名空间。

如果成功,该函数返回包含命名空间名称(带有关联的 URL)的数组。如果失败,则返回 false。


语法

class SimpleXMLElement
{
string getDocNamespaces(recursive)
}


参数描述
recursive可选。规定是否返回父子节点中的所有命名空间。默认是 false。


例子

XML 文件:

<?xml version="1.0" encoding="ISO-8859-1"?>
<note xmlns:b="http://www.w3school.com.cn/example/">
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<b:body>Dont forget the meeting!</b:body>
</note>

PHP 代码:

<?php
if (file_exists(test.xml))
  {
  $xml = simplexml_load_file(test.xml);
  }

print_r($xml->getDocNamespaces());
?>

输出类似:

Array
(
[b] => http://www.w3school.com.cn/example/
)


文章来源:https://liqingbo.com/blog-790.html

上一篇:getName

下一篇:children

评论