Statement on glibc/iconv Vulnerability

SimpleXMLElement::current

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

SimpleXMLElement::currentReturns the current element

Açıklama

public SimpleXMLElement::current(): SimpleXMLElement
Uyarı

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

This method returns the current element as a SimpleXMLElement object.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns the current element as a SimpleXMLElement object.

Hatalar/İstisnalar

Throws an Error on failure.

Sürüm Bilgisi

Sürüm: Açıklama
8.1.0 An Error is now thrown if SimpleXMLElement::current() is called on an invalid iterator. Previously, null was returned.

Örnekler

Örnek 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());
?>

Yukarıdaki örneğin çıktısı:

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

Ayrıca Bakınız

add a note

User Contributed Notes

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