SimpleXMLElement::next
(PHP 8)
SimpleXMLElement::next — 次の要素に移動する
パラメータ
この関数にはパラメータはありません。
戻り値
値を返しません。
例
例1 次の要素への移動
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP Basics</book><book>XML basics</book></books>');
$xmlElement->rewind(); // 最初の要素に巻き戻します
$xmlElement->next();
var_dump($xmlElement->current());
?>
上の例の出力は以下となります。
object(SimpleXMLElement)#2 (1) { [0]=> string(10) "XML 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