PHP - SimpleXMLIterator::key() 函数



定义和用法

XML 是一种用于在网络上共享数据的标记语言,XML 可供人和机器读取。SimpleXMLIterator 用于迭代 XML 文档的所有节点。

SimpleXMLIterator::key() 函数检索并返回当前元素的标签名称。

语法

SimpleXMLIterator::key(void);

参数

此函数不接受任何参数。

返回值

此函数返回一个字符串值,表示当前元素的标签名称;如果出现问题,则返回布尔值 FALSE。

PHP 版本

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

示例

以下示例演示了 SimpleXMLIterator::key() 函数的用法。

<html>
   <head>
      <body>
         <?php
            $doc = new DOMDocument;
            $data = "<?xml version = '1.0' encoding = 'UTF-8'?>
            <Employee>
               <Name>Raju</Name>
               <Age>25</Age>
               <Salary>2000</Salary>
            </Employee>";
            //Creating the SimpleXMLIterator
            $xmlIterator = new SimpleXMLIterator($data);
            $res = key($xmlIterator);
            print($res);
         ?>      
      </body>
   </head>   
</html> 

这将产生以下结果:

Name

示例

在以下示例中,我们尝试检索 XML 文档中所有元素的键:

Data.xml

<Tutorial>
   <Name>JavaFX</Name>
   <Pages>535</Pages>
   <Author>Krishna</Author>
   <Version>11</Version>
</Tutorial>

sample.html

<html>
   <head>
      <body>
         <?php
            $doc = new DOMDocument;
            //Creating the SimpleXMLIterator
            $xmlIterator = new SimpleXMLIterator("data.xml", 0, TRUE, "", FALSE);
            for($xmlIterator->rewind(); 
            $xmlIterator->valid(); 
            $xmlIterator->next() ){               
               print($xmlIterator->key()); 
               echo "<br><br>";
            }
         ?>      
      </body>
   </head>   
</html> 

这将产生以下输出:

Name
Pages
Author
Version
php_function_reference.htm
广告