3v4l.org

run code in 300+ PHP versions simultaneously
<?php class test { protected $a = 'ciao'; public function salute() { $a = 'a'; echo $this->$a; } public function __get($name) { var_dump($name); return $this->$name; } } $test = new test(); $test->salute();

preferences:
47.64 ms | 402 KiB | 5 Q