SimpleXMLElement::rewind

(No version information available, might only be in Git)

SimpleXMLElement::rewindRewind to the first element

Descripción

publicSimpleXMLElement::rewind(): void
Advertencia

Prior to PHP 8.0, SimpleXMLElement::rewind() was only declared on the subclass SimpleXMLIterator.

This method rewinds the SimpleXMLElement to the first element.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

No devuelve ningún valor.

Ejemplos

Ejemplo #1 Rewind to the first element

<?php
$xmlElement
= new SimpleXMLElement('<books><book>PHP Basics</book><book>XML Basics</book></books>');
$xmlElement->rewind();

var_dump($xmlElement->current());
?>

El resultado del ejemplo sería:

object(SimpleXMLElement)#2 (1) { [0]=> string(10) "PHP Basics" }
To Top