前端之家收集整理的这篇文章主要介绍了
在PHP中覆盖派生类中的静态成员,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<?PHP
class Base {
protected static $c = 'base';
public static function getC() {
return self::$c;
}
}
class Derived extends Base {
protected static $c = 'derived';
}
echo Base::getC(); // output "base"
echo Derived::getC(); // output "base",but I need "derived" here!
?>
那么最好的解决方法是什么?
原文链接:https://www.f2er.com/php/139372.html