3v4l.org

run code in 300+ PHP versions simultaneously
<?php final class Contains { /** * @var string */ private $comparedValue; /** * Creates the expression. * * @param string $comparedValue The compared value. */ public function __construct($comparedValue) { $this->comparedValue = $comparedValue; } /** * Returns the accepted suffix. * * @return string The accepted suffix. */ public function getComparedValue() { return $this->comparedValue; } public function equivalentTo(Expression $other) { // Since this class is final, we can check with instanceof return $other instanceof $this && $this->comparedValue == $other->comparedValue; } } $a = new Contains('foobar'); $b = new Contains(0); var_dump($a->equivalentTo($b));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: Contains::equivalentTo(): Argument #1 ($other) must be of type Expression, Contains given, called in /in/GeKPX on line 39 and defined in /in/GeKPX:28 Stack trace: #0 /in/GeKPX(39): Contains->equivalentTo(Object(Contains)) #1 {main} thrown in /in/GeKPX on line 28
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:
65.93 ms | 401 KiB | 8 Q