3v4l.org

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

preferences:
55.48 ms | 402 KiB | 5 Q