Php/func simplexml current
来自菜鸟教程
PHP current()函数
例
返回到第一个元素,然后使用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()); ?>
定义和用法
current()函数返回当前元素。
句法
SimpleXMLIterator::current()
技术细节
返回值: | 当前元素(作为SimpleXMLIterator对象)成功。失败时为NULL |
PHP版本: | 5.0+ |