mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
18 lines
345 B
PHP
18 lines
345 B
PHP
--TEST--
|
|
SPL: SplDoublyLinkedList : offsetUnset - first element
|
|
--CREDITS--
|
|
PHPNW TestFest2009 - Rowan Merewood <rowan@merewood.org>
|
|
--FILE--
|
|
<?php
|
|
$list = new SplDoublyLinkedList();
|
|
$list->push('oh');
|
|
$list->push('hai');
|
|
$list->push('thar');
|
|
echo $list->bottom() . "\n";
|
|
$list->offsetUnset(0);
|
|
echo $list->bottom() . "\n";
|
|
?>
|
|
--EXPECT--
|
|
oh
|
|
hai
|