Php/func simplexml rewind
来自菜鸟教程
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); // rewind to the first element $xml->rewind(); // return current element var_dump($xml->current()); ?>
定义和用法
rewind()函数后退到第一个元素。
句法
SimpleXMLIterator::rewind()
技术细节
返回值: | 没有 |
PHP版本: | 5.0+ |