6
子クラスで関数を必要とせずにこれを達成しようとしています...これは可能ですか?私はそれがない感じがありますが、私は実際に確認したい...親クラスから子クラス名を取得する方法
<?php
class A {
public static function who() {
echo __CLASS__;
}
public static function test() {
static::who(); // Here comes Late Static Bindings
}
}
class B extends A {
public static function who() {
echo __CLASS__;
}
}
B::test(); //returns B
?>