<?php $stack = new SplStack(); $stack->push("HI"); $stack->push("from the stack"); var_dump($stack); ?>