blob: 3e13a6b7f9cbaf5af2395b22922613b29291408d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--TEST--
SplDoublyLinkedList getIteratorMode
--CREDITS--
PHPNW Testfest 2009 - Lorna Mitchell
--FILE--
<?php
$list = new SplDoublyLinkedList();
var_dump($list->current());
?>
--EXPECT--
NULL
|