summaryrefslogtreecommitdiff
path: root/tests/classes/private_006b.phpt
blob: cdb7f2166e4861190965f8b0b4163563116bc2e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
--TEST--
ZE2 A private method can be overwritten in a second derived class
--FILE--
<?php

class first {
    private function show() {
        echo "Call show()\n";
    }

    public function do_show() {
        $this->show();
    }
}

$t1 = new first();
$t1->do_show();

class second extends first {
}

//$t2 = new second();
//$t2->do_show();

class third extends second {
    private function show() {
        echo "Call show()\n";
    }
}

$t3 = new third();
$t3->do_show();

echo "Done\n";
?>
--EXPECT--
Call show()
Call show()
Done