3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Lazy{ public function __call($method, $arguments){ $arguments = implode(', ', $arguments); echo 'Call to '.$method.' with arguments '.$arguments.' failed'; } } $lazy = new Lazy(); $lazy->a('foo', 'bar');

preferences:
38.5 ms | 402 KiB | 5 Q