PHP next() 関数
例
最初の要素に巻き戻し、次の要素に移動してから current() 関数で返します。
<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Do not forget me this weekend!</body>
</note>
XML;
$xml = new SimpleXMLIterator($note);
// rewind to the first element
$xml->rewind();
// move to the next element
$xml->next();
// return current element
var_dump($xml->current());
?>
定義と使用法
next() 関数は次の要素に移動します。
構文
SimpleXMLIterator::next()
技術的な詳細
戻り値: |
なし |
---|---|
PHP バージョン: |
5.0+ |
プログラミング学習を加速させる
プログラミングをプロの講師に教えてもらいませんか。