mirror of
https://github.com/php/php-src.git
synced 2024-12-05 07:46:06 +08:00
13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
|
--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
|