0
問題:クラスプロパティの名前を取得します。Propertiesクラスの名前
<?php
class Vasya {
public $name = __CLASS__;
}
$class = new Vasya();
echo $class->name; // result Vasya
class Petro extends Vasya { }
$class = new Petro();
echo $class->name; // result Vasya // Why???
プロパティに継承されたクラスの名前を取得するにはどうすればよいですか?
[どのように私はPHPでクラス名を取得するのですか?](http://stackoverflow.com/questions/15103810/how-do-i-の可能性のある重複 – fpietka
可能な重複)に-PHP-クラス名を-取得[サブクラスPHPと親キーワードから親の変数にアクセスします?](http://stackoverflow.com/questions/10852028/accessing-a-parents-variable-from-サブクラス-php-and-parent-keyword) –