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


PHP SimpleXMLIterator getChildren()用法及代码示例


SimpleXMLIterator::getChildren()函数是PHP中的内置函数,用于返回包含当前元素子元素的SimpleXMLIterator对象。

用法:

SimpleXMLIterator SimpleXMLIterator::getChildren( void )

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


返回值:该函数返回SimpleXMLIterator对象,该对象包含当前元素的子元素。

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

程序:

<?php 
  
// Store the xml element to variable 
$xml = <<<XML 
    <organization> 
        <name>GeeksforGeeks</name> 
        <address>Noida India</address> 
        <contact> 
            <email>abc@geeksforgeeks.org</email> 
            <mobile>+91-987654321</mobile> 
        </contact> 
    </organization> 
XML; 
  
$xmlIt = new SimpleXMLIterator($xml); 
  
// Loop starts from first element of xml and  
// run upto when elements are not valid 
for( $xmlIt->rewind(); $xmlIt->valid(); $xmlIt->next() ) { 
      
    foreach($xmlIt->getChildren() as $element => $content) { 
        echo "The content of '$element' element is '$content'" . "\n"; 
    } 
} 
  
?>
输出:
The content of 'email' element is 'abc@geeksforgeeks.org'
The content of 'mobile' element is '+91-987654321'

参考: https://www.php.net/manual/en/simplexmliterator.getchildren.php



相关用法


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