3v4l.org

run code in 300+ PHP versions simultaneously
<?php function three() { throw new RuntimeException('first exception'); } function two() { try { three(); } catch (Throwable $e) { throw new CustomException('custom', previous: $e); } } function one() { two(); } class CustomException extends Exception { public function getFullTrace() { return $this->getPrevious()?->getTrace() ?? $this->getTrace(); } } try { one(); } catch (CustomException $e) { var_dump($e->getFullTrace()); }
Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.28, 8.4.1 - 8.4.14, 8.5.0
array(3) { [0]=> array(4) { ["file"]=> string(9) "/in/m7HIQ" ["line"]=> int(9) ["function"]=> string(5) "three" ["args"]=> array(0) { } } [1]=> array(4) { ["file"]=> string(9) "/in/m7HIQ" ["line"]=> int(17) ["function"]=> string(3) "two" ["args"]=> array(0) { } } [2]=> array(4) { ["file"]=> string(9) "/in/m7HIQ" ["line"]=> int(29) ["function"]=> string(3) "one" ["args"]=> array(0) { } } }
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.

preferences:
70.98 ms | 408 KiB | 5 Q