3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyParent { protected $x = "parent"; public function __construct() { $this->x = "parent - construct"; } } class MyChild extends MyParent { protected $x = "child"; public function __construct() { var_dump($this->x); $this->x = "child - construct"; var_dump($this->x); $closure = function () { var_dump($this->x); }; $closure = $closure->bindTo($this, parent::class); $closure(); } } new MyChild;

This is an error 500

Value for `_results` contains invalid data `array`


preferences:
151.83 ms | 2102 KiB | 11 Q