mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
39 lines
557 B
PHP
Executable File
39 lines
557 B
PHP
Executable File
--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: Call to private method base::show() from context 'derived' in %s on line %d
|