Dutch PHP Conference 2025 - Call For Papers

SimpleXMLElement::rewind

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

SimpleXMLElement::rewindRewind to the first element

Опис

public SimpleXMLElement::rewind(): void
Увага

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

This method rewinds the SimpleXMLElement to the first element.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Не повертає значень.

Приклади

Приклад #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());
?>

Поданий вище приклад виведе:

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top