PHP 8.4.0 RC4 available for testing

SimpleXMLElement::next

(No version information available, might only be in Git)

SimpleXMLElement::nextMove to next element

说明

public SimpleXMLElement::next(): void
警告

Prior to PHP 8.0, SimpleXMLElement::next() was only declared on the subclass SimpleXMLIterator.

This method moves the SimpleXMLElement to the next element.

参数

此函数没有参数。

返回值

没有返回值。

示例

示例 #1 Move to the next element

<?php
$xmlElement
= new SimpleXMLElement('<books><book>PHP Basics</book><book>XML basics</book></books>');
$xmlElement->rewind(); // rewind to the first element
$xmlElement->next();

var_dump($xmlElement->current());
?>

以上示例会输出:

object(SimpleXMLElement)#2 (1) {
  [0]=>
  string(10) "XML basics"
}

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top