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
相关用法
- PHP SimpleXMLIterator next()用法及代码示例
- PHP SimpleXMLIterator key()用法及代码示例
- PHP SimpleXMLIterator current()用法及代码示例
- PHP SimpleXMLIterator rewind()用法及代码示例
- PHP SimpleXMLIterator hasChildren()用法及代码示例
- PHP SimpleXMLIterator valid()用法及代码示例
- PHP abs()用法及代码示例
- p5.js pan()用法及代码示例
- PHP each()用法及代码示例
- p5.js box()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP pow( )用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | SimpleXMLIterator getChildren() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。