mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
25 lines
298 B
PHP
25 lines
298 B
PHP
--TEST--
|
|
SPL: DoublyLinkedList: Iterator
|
|
--FILE--
|
|
<?php
|
|
$a = new SplDoublyLinkedList();
|
|
$a->push(1);
|
|
$a->push(2);
|
|
$a->push(3);
|
|
|
|
$a->rewind();
|
|
while ($a->valid()) {
|
|
var_dump($a->current(), $a->next());
|
|
}
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
int(1)
|
|
NULL
|
|
int(2)
|
|
NULL
|
|
int(3)
|
|
NULL
|
|
===DONE===
|