php-src/ext/spl/tests/SplDoublylinkedlist_offsetunset_first.phpt
2018-09-16 15:39:18 -03:00

26 lines
511 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');
$list->offsetUnset(0);
var_dump($list);
?>
--EXPECT--
object(SplDoublyLinkedList)#1 (2) {
["flags":"SplDoublyLinkedList":private]=>
int(0)
["dllist":"SplDoublyLinkedList":private]=>
array(2) {
[0]=>
string(3) "hai"
[1]=>
string(4) "thar"
}
}