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 args '$arguments' failed!"; } } $lazy = new Lazy(); $lazy->a('foo', 'bar');

preferences:
34.14 ms | 402 KiB | 5 Q