SimpleXMLElement::rewind
(PHP 8)
SimpleXMLElement::rewind — 最初の要素に巻き戻す
パラメータ
この関数にはパラメータはありません。
戻り値
値を返しません。
例
例1 最初の要素に巻き戻す
<?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.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google