3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Parser { public function parse($convertClassic = true) { $context = func_num_args() > 1 ? func_get_arg(1) : null; if ($context !== null && !$context instanceof DOMElement) { throw new InvalidArgumentException(__METHOD__ . ': Argument #1 ($context) must be of type ?DOMElement, ' . gettype($context) . ' given'); } } } class ChildParser extends Parser { public function parse($convertClassic = true, DOMElement $context = null) { return parent::parse($convertClassic, $context); } }
Output for git.master_jit, git.master
Deprecated: ChildParser::parse(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead in /in/21UXa on line 13
Output for rfc.property-hooks

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