Dutch PHP Conference 2023 - Call for Papers

SimpleXMLElement::current

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

SimpleXMLElement::currentReturns the current element

Описание

public SimpleXMLElement::current(): SimpleXMLElement
Внимание

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

This method returns the current element as a SimpleXMLElement object.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Returns the current element as a SimpleXMLElement object.

Ошибки

Throws an Error on failure.

Список изменений

Версия Описание
8.1.0 An Error is now thrown if SimpleXMLElement::current() is called on an invalid iterator. Previously, null was returned.

Примеры

Пример #1 Return the current element

<?php
$xmlElement
= new SimpleXMLElement('<books><book>PHP basics</book><book>XML basics</book></books>');
var_dump($xmlIElement->current());

$xmlElement->rewind(); // rewind to first element
var_dump($xmlElement->current());
?>

Результат выполнения данного примера:

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

Смотрите также

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top