このコードで:
<?php
class a {
public static function type() {
echo get_class();
}
}
class b extends a {
}
echo b::type();
を出力しますa
。呼び出し元のクラスの名前を教えてください:b
。出来ますか ?
このコードで:
<?php
class a {
public static function type() {
echo get_class();
}
}
class b extends a {
}
echo b::type();
を出力しますa
。呼び出し元のクラスの名前を教えてください:b
。出来ますか ?