<?php class Foo { private $x; static function myCtr() { $obj = new self; $obj->x = 42; return $obj; } public function getX() { return $this->x; } } $foo = Foo::myCtr(); echo $foo->getX();
You have javascript disabled. You will not be able to edit any code.