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