|
SimpleXMLElement::getChildrenReturns the sub-elements of the current element Description
public SimpleXMLElementnull SimpleXMLElement::getChildren()
Warning
Prior to PHP 8.0, SimpleXMLElement::getChildren was only declared on the subclass SimpleXMLIterator. This method returns a SimpleXMLElement object containing sub-elements of the current SimpleXMLElement element. ParametersThis function has no parameters. Return ValuesReturns a SimpleXMLElement object containing the sub-elements of the current element. Examples
Example #1 Return the sub-elements of the current element
The above example will output: The title is 'PHP Basics' from the class SimpleXMLElement The author is 'Jim Smith' from the class SimpleXMLElement |