123456789101112131415161718192021222324252627282930313233343536373839404142 |
- --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
|