| Current Path : /hdd/hdd12/install/php/php-7.4.32/tests/classes/ |
| Current File : //hdd/hdd12/install/php/php-7.4.32/tests/classes/property_override_privateStatic_protected.phpt |
--TEST--
Redeclare inherited private static property as protected.
--FILE--
<?php
class A
{
private static $p = "A::p (static)";
static function showA()
{
echo self::$p . "\n";
}
}
class B extends A
{
protected $p = "B::p";
function showB()
{
echo $this->p . "\n";
}
}
A::showA();
$b = new B;
$b->showA();
$b->showB();
?>
--EXPECT--
A::p (static)
A::p (static)
B::p