PHP rewind() 函数
示例
回溯到第一个元素,然后返回它(使用 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);
// 回溯到第一个元素
$xml->rewind();
// 返回当前元素
var_dump($xml->current());
?>
运行示例 »
定义和用法
rewind() 函数回溯到第一个元素。
语法
SimpleXMLIterator::rewind()
技术细节
返回值 | 无 |
---|---|
PHP 版本 | 5.0+ |
❮ PHP SimpleXML 参考