<?php $stack = new SplStack(); $stack->push("one"); $stack->push("two"); $serialized = $stack->serialize(); echo $stack->count(), "\n"; $stack->unserialize($serialized); echo $stack->count(), "\n"; $stack->unserialize($serialized); echo $stack->count(), "\n";
You have javascript disabled. You will not be able to edit any code.