当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP SimpleXMLElement::getName()用法及代码示例


前提条件: 阅读XML基础知识

SimpleXMLElement::getName()函数是PHP中的一个内置函数,该函数返回xml元素的名称。

用法:


string SimpleXMLElement::getName( void )

参数:该函数不接受任何参数。

返回值:它返回一个字符串,该字符串表示SimpleXMLElement对象的XML元素的名称。

注意:此函数在PHP 5.1.3和更高版本上可用。

以下示例程序旨在说明PHP中的SimpleXMLElement::getName()函数:

范例1:

<?php 
  
// Loading XML document to $user 
$user = <<<XML 
<user> 
    <username>Geeks123 </username> 
    <name>GeeksforGeeks</name> 
    <phone>+91-XXXXXXXXXX</phone> 
    <detail font-color="blue" font-size="24px"> 
        Noide India 
    </detail> 
</user> 
XML; 
  
// Loading string as simple xml object 
$xml = simplexml_load_string($user); 
  
// Display the name of element 
echo "Base tag name:" . $xml->getName() . "<br>"; 
  
foreach($xml->children() as $child) { 
    echo "child node:" . $child->getName()  
        . " = " . $child . "</br>"; 
} 
  
?>

输出:

范例2:

<?php 
  
// Loading XML document to $user 
$user = <<<XML 
<user> 
    <username>Geeks123</username> 
    <name>GeeksforGeeks</name> 
    <phone>+91-XXXXXXXXXX</phone> 
    <detail font-color="blue" font-size="24px"> 
        Computer science portal 
    </detail> 
    <address> 
        <city>Noida</city> 
        <country>India</country> 
    </address> 
</user> 
XML; 
  
// Loading string as simple xml object 
$xml = simplexml_load_string($user); 
  
// Recursive function called 
getname_rec($xml, 0); 
   
// The getname_rec() function definition  
function getname_rec($xml, $depth) { 
      
    print_space($depth); 
      
    echo "tag name:" . $xml->getName() . "<br>"; 
      
    foreach($xml->children() as $child) { 
        if($child->count() > 0) { 
              
            // If there exists any child of current node 
            getname_rec($child, $depth+1); 
        } 
        else {  
              
            // If there is no child of the current node 
            print_space($depth); 
            echo " child node:" . $child->getName() 
                    . " = " . $child . "</br>"; 
        } 
    } 
} 
  
// Fucntion to print 3X$i number of spaces 
function print_space($i) { 
    for($x = 0; $x < $i*3; $x++) { 
        echo " "; 
    } 
} 
  
?>

输出:

参考:https://www.php.net/manual/en/simplexmlelement.getname.php



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 PHP | SimpleXMLElement::getName() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。