array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'splobjectstorage.next.php', 1 => 'SplObjectStorage::next', 2 => 'Move to the next entry', ), 'up' => array ( 0 => 'class.splobjectstorage.php', 1 => 'SplObjectStorage', ), 'prev' => array ( 0 => 'splobjectstorage.key.php', 1 => 'SplObjectStorage::key', ), 'next' => array ( 0 => 'splobjectstorage.offsetexists.php', 1 => 'SplObjectStorage::offsetExists', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/spl/splobjectstorage/next.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::next — Move to the next entry
У цієї функції немає параметрів.
Не повертає значень.
Приклад #1 SplObjectStorage::next() 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)
var_dump($index);
var_dump($object);
$s->next();
}
?>
Поданий вище приклад виведе щось схоже на:
int(0) object(stdClass)#2 (0) { } int(1) object(stdClass)#3 (0) { }