mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
14 lines
184 B
PHP
14 lines
184 B
PHP
--TEST--
|
|
SPL: DoublyLinkedList: prev
|
|
--FILE--
|
|
<?php
|
|
$dll = new SplDoublyLinkedList();
|
|
$dll->rewind();
|
|
$dll->prev();
|
|
var_dump($dll->current());
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
NULL
|
|
===DONE===
|