SimpleXMLIterator::next
SimpleXMLIterator::next
(PHP 5 >= 5.1.0, PHP 7)
SimpleXMLIterator :: next - 移至下一个元素
描述
public void SimpleXMLIterator::next ( void )
该方法将SimpleXMLIterator移动到下一个元素。
参数
该功能没有参数。
返回值
没有值返回。
例子
Example#1 移动到下一个元素
<?php
$xmlIterator = new SimpleXMLIterator('<books><book>PHP Basics</book><book>XML basics</book></books>'
$xmlIterator->rewind( // rewind to the first element
$xmlIterator->next(
var_dump($xmlIterator->current()
?>
上面的例子将输出:
object(SimpleXMLIterator)#2 (1) {
[0]=>
string(10) "XML basics"
}
← SimpleXMLIterator::key
SimpleXMLIterator::rewind →