<?php class Test { private $x = 123; public static function create() { $test = new self; print $test->x; } } Test::create();
You have javascript disabled. You will not be able to edit any code.