mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
12 lines
191 B
PHP
12 lines
191 B
PHP
--TEST--
|
|
SplDoublyLinkedList getIteratorMode
|
|
--CREDITS--
|
|
PHPNW Testfest 2009 - Lorna Mitchell
|
|
--FILE--
|
|
<?php
|
|
$list = new SplDoublyLinkedList();
|
|
var_dump($list->current());
|
|
?>
|
|
--EXPECT--
|
|
NULL
|