3v4l.org

run code in 300+ PHP versions simultaneously
<?php class PreviousException extends \Exception {} class One extends \RuntimeException { // Just a standard exception } class Two extends \RuntimeException{ // An exception with custom constructor parameters public function __construct($customMessage, PreviousException $e) { parent::__construct($customMessage . "LOL", $e->getCode(), $e); } } try { throw new Two('Throwing "Two", but catch will receive a different class type if I specify just "\Exception" in the catch statement not "Two"', new PreviousException()); } catch (\Exception $e) { var_dump($e); }
Output for git.master, git.master_jit, rfc.property-hooks
object(Two)#1 (7) { ["message":protected]=> string(128) "Throwing "Two", but catch will receive a different class type if I specify just "\Exception" in the catch statement not "Two"LOL" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/h7WFL" ["line":protected]=> int(19) ["trace":"Exception":private]=> array(0) { } ["previous":"Exception":private]=> object(PreviousException)#2 (7) { ["message":protected]=> string(0) "" ["string":"Exception":private]=> string(0) "" ["code":protected]=> int(0) ["file":protected]=> string(9) "/in/h7WFL" ["line":protected]=> int(19) ["trace":"Exception":private]=> array(0) { } ["previous":"Exception":private]=> NULL } }

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:
39.65 ms | 402 KiB | 8 Q