array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'splobjectstorage.current.php', 1 => 'SplObjectStorage::current', 2 => 'Returns the current storage entry', ), 'up' => array ( 0 => 'class.splobjectstorage.php', 1 => 'SplObjectStorage', ), 'prev' => array ( 0 => 'splobjectstorage.count.php', 1 => 'SplObjectStorage::count', ), 'next' => array ( 0 => 'splobjectstorage.detach.php', 1 => 'SplObjectStorage::detach', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splobjectstorage/current.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

SplObjectStorage::current

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

SplObjectStorage::currentReturns the current storage entry

Beschreibung

public SplObjectStorage::current(): object

Returns the current storage entry.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

The object at the current iterator position.

Changelog

Version Beschreibung
8.1.0 SplObjectStorage::current() now throws an Error exception if the current position is invalid. Previously, false was returned instead.

Beispiele

Beispiel #1 SplObjectStorage::current() example

<?php
$s
= new SplObjectStorage();

$o1 = new stdClass;
$o2 = new stdClass;

$s->attach($o1, "d1");
$s->attach($o2, "d2");

$s->rewind();
while(
$s->valid()) {
$index = $s->key();
$object = $s->current(); // similar to current($s)
$data = $s->getInfo();

var_dump($object);
var_dump($data);
$s->next();
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

object(stdClass)#2 (0) {
}
string(2) "d1"
object(stdClass)#3 (0) {
}
string(2) "d2"

Siehe auch