ReflectionProperty::getDeclaringClass

(PHP 5, PHP 7, PHP 8)

ReflectionProperty::getDeclaringClass宣言しているクラスを取得する

説明

public ReflectionProperty::getDeclaringClass(): ReflectionClass

宣言しているクラスを取得します。

パラメータ

この関数にはパラメータはありません。

戻り値

ReflectionClass オブジェクトを返します。

参考

add a note

User Contributed Notes 2 notes

up
7
metamarkers at gmail dot com
12 years ago
If you're reflecting an object and get the declaring class of a property that's set but wasn't declared in any class, it returns the class of the instance.<?phpclass X {    }$x = new X();$x->foo = 'bar';$reflection = new ReflectionObject($x);echo $reflection->getProperty('foo')->getDeclaringClass()->getName(); // X?>
up
0
kp42 at ya dot ru
3 months ago
Be careful when use getDeclaringClass() for properties from traits<?phptrait Y {  public $y;}class X {    use Y;}$x = new X();$x->y = 42;$reflection = new ReflectionObject($x);echo $reflection->getProperty('y')->getDeclaringClass()->getName(); // X?>
To Top