SimpleXMLIterator::hasChildren()函数是PHP中的内置函数,用于检查当前的SimpleXMLIterator元素是否具有子元素。
用法:
bool SimpleXMLIterator::hasChildren( void )
参数:该函数不接受任何参数。
返回值:如果当前元素具有子元素,则此函数返回TRUE,否则返回FALSE。
以下示例程序旨在说明PHP中的SimpleXMLIterator::hasChildren()函数:
程序:
<?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() ) {
if($xmlIt->hasChildren()) {
print_r($xmlIt->current());
}
}
?>
输出:
SimpleXMLIterator Object ( [email] => abc@geeksforgeeks.org [mobile] => +91-987654321 )
参考: https://www.php.net/manual/en/simplexmliterator.haschildren.php
相关用法
- PHP SimpleXMLIterator next()用法及代码示例
- PHP SimpleXMLIterator key()用法及代码示例
- PHP SimpleXMLIterator getChildren()用法及代码示例
- PHP SimpleXMLIterator rewind()用法及代码示例
- PHP SimpleXMLIterator current()用法及代码示例
- PHP SimpleXMLIterator valid()用法及代码示例
- p5.js int()用法及代码示例
- PHP sin( )用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP each()用法及代码示例
- p5.js hue()用法及代码示例
- CSS var()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | SimpleXMLIterator hasChildren() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。