當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SimpleXMLIterator hasChildren()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | SimpleXMLIterator hasChildren() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。