PHP SimpleXMLElement::getName() 函数



定义和用法

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

SimpleXMLElement::getName() 函数检索并返回当前 XML 元素的名称。

语法

SimpleXMLElement::getName();

参数

此函数不接受任何参数。

返回值

此函数返回一个字符串值,表示当前 XML 元素的名称。

PHP 版本

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

示例

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

<html>
   <head>
      <body>
         <?php
            $str="<?xml version='1.0' standalone='yes'?>
            <Tutorial>
               <Name type = 'programming'>JavaFX</Name>
               <Pages>535</Pages>
               <Author>Krishna</Author>
               <Version>11</Version>
            </Tutorial>";
            $xml = new SimpleXMLElement($str);
            print("Name of the current element: ".$xml->getName());
         ?>      
      </body>
   </head>   
</html> 

这将产生以下结果:

Name of the current element: Tutorial

示例

以下示例读取 XML 文件的内容并打印其中的元素名称:

data.xml

<?xml version="1.0" encoding="utf-8"?>
<Tutorials>
   <Tutorial>
      <Name>JavaFX</Name>
      <Pages>535</Pages>
      <Author>Krishna</Author>
      <Version>11</Version>
   </Tutorial>

   <Tutorial>
      <Name>CoffeeScript</Name>
      <Pages>235</Pages>
      <Author>Kasyap</Author>
      <Version>2.5.1</Version>
   </Tutorial>
   
   <Tutorial>
      <Name>OpenCV</Name>
      <Pages>150</Pages>
      <Author>Maruti</Author>
      <Version>3.0</Version>
   </Tutorial>
</Tutorials>

Sample.php

<html>
   <head>      
      <body>         
         <?php
            $doc = new DOMDocument;
            $xml = simplexml_load_file("data.xml");
            //file to SimpleXMLElement 
            $xml = simplexml_import_dom($xml);
		
            print($xml->getName()."<br>");
               foreach ($xml->children() as $child){
               print("::". $child->getName() ."<br>");
               foreach ($child->children() as $child){
                  print(":::::". $child->getName() ."<br>");			   
               }
            }
         ?>
      </body>
   </head>
</html>

这将产生以下输出:

Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version

示例

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

<html>
   <head>      
      <body>         
         <?php
            $data = "<Tutorials>  </Tutorials>";
            $xml = simplexml_load_string($data);
            print_r($xml);

            //Adding the child node
            $child = $xml->addChild('Tutorial');
            $child->addChild('Name', 'OpenCV');
            $child->addChild('Pages', '230');
            $child->addChild('Author', 'Maruthi');
            $child->addChild('Version', '5.5');
 
            print($xml->getName()."<br>");
            foreach ($xml->children() as $child){
               print("::". $child->getName() ."<br>");
               foreach ($child->children() as $child){
                  print(":::::". $child->getName() ."<br>");
               }
            }
         ?>
      </body>
   </head>
</html>

这将产生以下结果:

SimpleXMLElement Object ( ) Tutorials
::Tutorial
:::::Name
:::::Pages
:::::Author
:::::Version
php_function_reference.htm
广告