/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
tests
/
classes
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/tests/classes/private_redeclare.phpt
--TEST-- ZE2 A derived class does not know anything about inherited private methods --FILE-- <?php class base { private function show() { echo "base\n"; } function test() { $this->show(); } } $t = new base(); $t->test(); class derived extends base { function show() { echo "derived\n"; } function test() { echo "test\n"; $this->show(); parent::test(); parent::show(); } } $t = new derived(); $t->test(); ?> --EXPECTF-- base test derived base Fatal error: Uncaught Error: Call to private method base::show() from scope derived in %s:%d Stack trace: #0 %s(%d): derived->test() #1 {main} thrown in %s on line %d
Copyright ©2k19 -
Hexid
|
Tex7ure