3v4l.org

run code in 300+ PHP versions simultaneously
<?php class m{ public $age; public $name; __construct(name,age){ $this->age=age; $this->name =name; } function get_age(){ return $this->age;} } class do{ static function go(name,age){ $m = new m(name,age); } $foo = do::go("m", 3); $goo = $foo::get_age(); print($good);
Output for 7.1.0 - 7.1.7
Parse error: syntax error, unexpected '__construct' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/DOL59 on line 7
Process exited with code 255.
Output for 7.0.0 - 7.0.20
Parse error: syntax error, unexpected '__construct' (T_STRING), expecting function (T_FUNCTION) in /in/DOL59 on line 7
Process exited with code 255.

preferences:
161.11 ms | 1395 KiB | 36 Q