<?php class test { protected $a = '1'; public function a() { print "2"; } public function b() { print $this->a; } public function a1() { static::a(); } public function b1() { static::b(); } } $t = new test(); $t->a(); $t->b(); $t->a1(); $t->b1(); $t::a(); $t::b(); $t::a1(); $t::b1();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`