3v4l.org

run code in 300+ PHP versions simultaneously
<?php class ToStringTest { function toString() { echo 'toString'; throw new Exception('error'); } function __toString() { try { $this->toString(); } catch (\Exception $e) { assert(false); } } } $test = new ToStringTest; $test = (string) $test;

preferences:
47.51 ms | 402 KiB | 5 Q