3v4l.org

run code in 300+ PHP versions simultaneously
<?php class SimpleClass { const COSNTANT_VALUE = "costant value"; private $var = "a default value"; function __construct($var) { $this->var = $var; } public function getVar() { return $this->var; } public function setVar($var) { $this->var = $var; } public function toString() { echo $this->var; } } //$test = new SimpleClass("test2"); //$test->setVar("test"); //$test->toString(); class MyClass { const CONST_VALUE = "A constant value"; private $name; function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function toString(){ echo $this->name; } } echo MyClass::CONST_VALUE; $Object = new MyClass();
Output for 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
A constant value Fatal error: Uncaught ArgumentCountError: Too few arguments to function MyClass::__construct(), 0 passed in /in/ermkQ on line 51 and exactly 1 expected in /in/ermkQ:33 Stack trace: #0 /in/ermkQ(51): MyClass->__construct() #1 {main} thrown in /in/ermkQ on line 33
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33
A constant value Warning: Missing argument 1 for MyClass::__construct(), called in /in/ermkQ on line 51 and defined in /in/ermkQ on line 33 Notice: Undefined variable: name in /in/ermkQ on line 34

preferences:
270.84 ms | 402 KiB | 339 Q