[expect php] [file] <?php error_reporting(0); class pass { protected function fail() { echo "Call fail()\n"; } public function good() { $this->fail(); } } $t = new pass(); $t->good(); $t->fail(); // must fail because we are calling from outside of class pass echo "Done\n"; // shouldn't be displayed
[expect php] [file] <?php error_reporting(0); class pass { protected static function fail() { echo "Call fail()\n"; } public static function good() { pass::fail(); } } pass::good(); pass::fail(); // must fail because we are calling from outside of class pass echo "Done\n"; // shouldn't be displayed
static function ok() { pass::good(); }