--TEST-- SPL: SplDoublyLinkedList : offsetUnset - last element --CREDITS-- PHPNW TestFest2009 - Rowan Merewood --FILE-- push('oh'); $list->push('hai'); $list->push('thar'); $list->offsetUnset(2); var_dump($list); ?> --EXPECT-- object(SplDoublyLinkedList)#1 (2) { ["flags":"SplDoublyLinkedList":private]=> int(0) ["dllist":"SplDoublyLinkedList":private]=> array(2) { [0]=> string(2) "oh" [1]=> string(3) "hai" } }