PHP 8.1.28 Released!

SimpleXMLElement::current

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

SimpleXMLElement::currentReturns the current element

Descrição

public SimpleXMLElement::current(): SimpleXMLElement
Aviso

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

This method returns the current element as a SimpleXMLElement object.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns the current element as a SimpleXMLElement object.

Erros/Exceções

Throws an Error on failure.

Registro de Alterações

Versão Descrição
8.1.0 An Error is now thrown if SimpleXMLElement::current() is called on an invalid iterator. Previously, null was returned.

Exemplos

Exemplo #1 Return the current element

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

$xmlElement->rewind(); // rewind to first element, otherwise current() won't work
var_dump($xmlElement->current());
?>

O exemplo acima produzirá:

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

Veja Também

add a note

User Contributed Notes

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