Skip to content

Instantly share code, notes, and snippets.

@morrisonlevi
Last active December 15, 2015 09:59
Show Gist options
  • Save morrisonlevi/5242911 to your computer and use it in GitHub Desktop.
Save morrisonlevi/5242911 to your computer and use it in GitHub Desktop.
<?php
$stack = new SplStack();
$stack->push(3);
$stack->push(2);
$stack->push(1);
$stack->unshift(4);
foreach ($stack as $value) {
echo "$value\n";
}
echo "What? I can just add something to the front?\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment