<?php class Outside { private $private = 'You should be able to see me'; public function getAnon() { return new class($this) { private $outside; public function __construct($outside) { $this->outside = $outside; } public function getPrivateOfOutside() { return $this->outside->private; } }; } } $foo = new Outside(); var_dump($foo->getAnon()->getPrivateOfOutside());
You have javascript disabled. You will not be able to edit any code.