3v4l.org

run code in 300+ PHP versions simultaneously
<?php class person { public $name; public function hi($name) { $this->name = $name; return $this->name . ' hello!'; } } $rs = call_user_func_array(array(new person(), 'hi'), array('Alex')); var_dump($rs);

preferences:
36.06 ms | 402 KiB | 5 Q