<?php $o = new class { public $val = 'I do get seen!'; public function fun() { // use `this` to reference the current object we are in! return $this->val; } }; var_dump($o->fun());
You have javascript disabled. You will not be able to edit any code.