<?php class Foo { private $count = 0; public function bar() { if (false) { return; } $this->count++; var_dump($this->count); } public function sheet(){ self::bar(); } } $foo = new Foo(); $foo->sheet();
You have javascript disabled. You will not be able to edit any code.