实现父类调用子类中重写静态成员
关超2019-05-06 14:46:22233<?php
class Father{
public static $money = 52000;
public static function getClass(){
return __CLASS__ ;
}
public static function getMoney(){
// return self::getClass().'::'.self::$money;
return static::getClass().'::'.static::$money;
}
}
echo '类名 : '.Father::getClass()."<hr>";
echo '方法 : '.Father::getMoney(),"<hr>";
class Son extends Father{
public static $money = 12000;
public static function getClass(){
return __CLASS__ ;
}
}
echo "<hr>";
echo Son::$money;
echo "<hr>";
echo Son::getClass();
echo "<hr>";
echo Son::getMoney();
?>