3v4l.org

run code in 300+ PHP versions simultaneously
<?php try { try { try { try { try{ try{ throw new Exception('hi', 1); } Catch (Exception $e) { throw new Exception('hi', 2, $e); } } Catch (Exception $e) { throw new Exception('hi', 3, $e); } } Catch (Exception $e) { throw new Exception('hi', 4, $e); } } Catch (Exception $e) { throw new Exception('hi', 5, $e); } } Catch (Exception $e) { throw new Exception('hi', 6, $e); } } catch (Exception $e) { echo $e->getMessage(), "\n"; while ($e = $e->getPreviousException()) { echo $e->getMessage(), "\n"; } }
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
hi Fatal error: Uncaught Error: Call to undefined method Exception::getPreviousException() in /in/K3tsH:28 Stack trace: #0 {main} thrown in /in/K3tsH on line 28
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
hi Fatal error: Call to undefined method Exception::getPreviousException() in /in/K3tsH on line 28
Process exited with code 255.

preferences:
207.11 ms | 402 KiB | 256 Q