3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A { function get() { throw new Exception('some error'); } } class B { function __toString() { $a = new A; return $a->get(); } } $b = new B; var_dump((string) $b);

preferences:
29.74 ms | 402 KiB | 5 Q