VOOZH about

URL: https://www.geeksforgeeks.org/php/php-simplexmliterator-haschildren-function/

⇱ PHP | SimpleXMLIterator hasChildren() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

PHP | SimpleXMLIterator hasChildren() Function

Last Updated : 12 Jul, 2025
The SimpleXMLIterator::hasChildren() function is an inbuilt function in PHP which is used to check whether the current SimpleXMLIterator element has sub-elements or not. Syntax:
bool SimpleXMLIterator::hasChildren( void )
Parameters: This function does not accept any parameters. Return Value: This function returns TRUE if the current element has sub-elements, FALSE otherwise. Below program illustrates the SimpleXMLIterator::hasChildren() function in PHP: Program:
Output:
SimpleXMLIterator Object
(
 [email] => abc@geeksforgeeks.org
 [mobile] => +91-987654321
)
Reference: https://www.php.net/manual/en/simplexmlelement.haschildren
Comment