目录

PHP next() 函数

❮ PHP SimpleXML 参考

示例

倒回到第一个元素,移动到下一个元素,然后使用 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+

❮ PHP SimpleXML 参考