<?php class A{ protected $data = ['lol' => 'baz']; function __get($x){ return $this->data[$x]; } function getStuff(){ return $this->lol; } } $x = new A; var_dump($x->getStuff());
You have javascript disabled. You will not be able to edit any code.