Php/func simplexml next

来自菜鸟教程
跳转至:导航、​搜索

PHP next()函数

Simple 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+

Simple PHP SimpleXML参考