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 git.master_jit, git.master
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) { } } }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
25.25 ms | 406 KiB | 5 Q