1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/ext/spl/tests/SplDoublyLinkedList_current_empty.phpt
2009-05-23 15:38:18 +00:00

13 lines
214 B
PHP

--TEST--
Run current() function on an empty SplDoublyLinkedList.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$list = new SplDoublyLinkedList();
var_dump($list->current());
?>
--EXPECT--
NULL