3v4l.org

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

preferences:
40.29 ms | 402 KiB | 5 Q