3v4l.org

run code in 300+ PHP versions simultaneously
<?php class PushAndPull { public $queue=array(); public function push($push) { array_push($this->$queue,$push); } public function pull() { return array_shift($this->$queue); } } $obj = new PushAndPull(); $obj->push(1); echo $queue; ?>

preferences:
36.47 ms | 402 KiB | 5 Q