PHP - SimpleXMLElement::getNameSpaces() 函数



定义和用法

XML 是一种标记语言,用于在网络上共享数据,XML 既可供人类阅读,也可供机器阅读。SimpleXMLElement 类在 PHP 中表示 XML 文档。

SimpleXMLElement::getNamespaces() 函数检索并返回文档中使用的命名空间。

语法

SimpleXMLElement::getNamespaces([$recursive]);

参数

序号 参数及描述
1

recursive (可选)

这是一个布尔值,如果传递 TRUE,则此函数返回父节点和子节点的命名空间。

返回值

此函数返回一个包含命名空间的数组。

PHP 版本

此函数首次引入于 PHP 5 版本,并在所有后续版本中均有效。

示例

以下示例演示了 SimpleXMLElement::getNamespaces() 函数的用法。

<html>
   <head>
      <body>
         <?php
            $str="<Tutorial xmlns:t='http://example.org/ns' xmlns:test='http://demo.com/test'>
               <t:Name test:ns='a'>JavaFX</t:Name>
               <t:Pages test:ns='b'>535</t:Pages>
               <t:Author test:ns='c'>Krishna</t:Author>
               <t:Version test:ns='d'>11</t:Version>
            </Tutorial>"; 
            $xml = new SimpleXMLElement($str);
            $result = $xml->getNamespaces(TRUE);
            var_dump($result);	 
         ?>      
      </body>
   </head>   
</html> 

这将产生以下结果:

array(2) { ["t"]=> string(21) "http://example.org/ns" ["test"]=> string(20) "http://demo.com/test" }

示例

以下是此函数的一个示例:

<html>
   <head>
      <body>
         <?php
            $str="<Employee xmlns:contact='http://example.org/ns'>
               <Name>Ramu</Name>
               <Age>25</Age>
               <contact:City>Hyderabad</contact:City>
               <contact:Phone>9848022338</contact:Phone>
               <contact:email>[email protected]</contact:email>
            </Employee>"; 
            $xml = new SimpleXMLElement($str);
            $result = $xml->getNamespaces(TRUE);
            var_dump($result);	 
         ?>      
      </body>
   </head>   
</html> 

这将产生以下输出:

array(1) { ["contact"]=> string(21) "http://example.org/ns" }
php_function_reference.htm
广告