mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
43 lines
641 B
PHP
43 lines
641 B
PHP
--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 context 'derived' in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): derived->test()
|
|
#1 {main}
|
|
thrown in %s on line %d
|