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