|
SimpleXMLElement::rewindRewind to the first element Description
public void SimpleXMLElement::rewind()
Warning
Prior to PHP 8.0, SimpleXMLElement::rewind was only declared on the subclass SimpleXMLIterator. This method rewinds the SimpleXMLElement to the first element. ParametersThis function has no parameters. Return ValuesNo value is returned. Examples
Example #1 Rewind to the first element
The above example will output: object(SimpleXMLElement)#2 (1) { [0]=> string(10) "PHP Basics" } |