(没有版本信息可用,可能只在 Git 中)
SimpleXMLElement::current — 返回当前元素
在 PHP 8.0 之前,SimpleXMLElement::current() 仅在子类 SimpleXMLIterator 上声明。
此方法返回当前元素作为 SimpleXMLElement 对象。
此函数没有参数。
返回当前元素作为 SimpleXMLElement 对象。
在失败时抛出 Error。
示例 #1 返回当前元素
<?php
$xmlElement = new SimpleXMLElement('<books><book>PHP basics</book><book>XML basics</book></books>');
$xmlElement->rewind(); // 回到第一个元素,否则 current() 不会起作用
var_dump($xmlElement->current());
?>
上面的示例将输出
object(SimpleXMLElement)#2 (1) { [0]=> string(10) "PHP basics" }