PHP türetilmiş sınıfları basan statik üye

0 Cevap 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!
?>

Yani en iyi çözüm nedir?

0 Cevap