mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
c1e977f1bb
Closes GH-6515.
27 lines
503 B
PHP
27 lines
503 B
PHP
--TEST--
|
|
Late Static Binding static:: calls protected / public method of child class even then
|
|
the method is private in parent class
|
|
--FILE--
|
|
<?php
|
|
class A {
|
|
public static function out() {
|
|
echo static::value(), PHP_EOL;
|
|
}
|
|
|
|
private static function value() { return 'A'; }
|
|
}
|
|
class B extends A {
|
|
protected static function value() { return 'B'; }
|
|
}
|
|
class C extends A {
|
|
public static function value() { return 'C'; }
|
|
}
|
|
A::out();
|
|
B::out();
|
|
C::out();
|
|
echo PHP_EOL;
|
|
--EXPECT--
|
|
A
|
|
B
|
|
C
|