fork(1) download
  1. <?php
  2. $dll = new SplDoublyLinkedList();
  3. $dll->push(2);
  4. $dll->push(3);
  5. $dll->unshift(5);
  6. $dll->rewind(); // starting from beginning without this it will not work
  7.  
  8. while($dll->valid()){
  9. echo $dll->current()."\n";
  10. $dll->next();
  11. }
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
5
2
3