Skip to content

Instantly share code, notes, and snippets.

@epplestun
Created March 24, 2011 08:40
Show Gist options
  • Save epplestun/884749 to your computer and use it in GitHub Desktop.
Save epplestun/884749 to your computer and use it in GitHub Desktop.
<?php
$q = new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_KEEP);
$q->push("uno");
$q->push("dos");
$q->push("tres");
$q->push("cuatro");
$q->push("cinco");
$q->rewind();
echo $q->current() . "\n";
$q->next();
$q->next();
echo $q->current() . "\n";
$q->prev();
echo $q->current() . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment