3v4l.org

run code in 300+ PHP versions simultaneously
<?php class CustomException extends Exception{ public function __construct($message = '', $code = '', $previous = NULL) { parent::__construct($message, $code); } } try { throw new \CustomException(); } catch(\Exception $exc) { throw new \CustomException($exc->getMessage(), $exc->getCode(), $exc); }
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: Exception::__construct(): Argument #2 ($code) must be of type int, string given in /in/Ya32I:6 Stack trace: #0 /in/Ya32I(6): Exception->__construct('', '') #1 /in/Ya32I(12): CustomException->__construct() #2 {main} thrown in /in/Ya32I on line 6
Process exited with code 255.

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:
134.69 ms | 406 KiB | 5 Q