(无版本信息可用,可能仅存在于 Git 中)
SimpleXMLElement::rewind — 回滚到第一个元素
在 PHP 8.0 之前,SimpleXMLElement::rewind() 仅在子类 SimpleXMLIterator 中声明。
此方法将 SimpleXMLElement 回滚到第一个元素。
此函数没有参数。
不返回任何值。
示例 #1 回滚到第一个元素
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP Basics</book><book>XML Basics</book></books>');
$xmlElement->rewind();
var_dump($xmlElement->current());
?>
以上示例将输出
object(SimpleXMLElement)#2 (1) { [0]=> string(10) "PHP Basics" }