ReflectionParameter::getDeclaringClass
(PHP 5 >= 5.1.3, PHP 7, PHP 8)
ReflectionParameter::getDeclaringClass — 宣言しているクラスを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
ReflectionClass オブジェクトを返します。
関数の中で呼ばれた場合、null
を返します。
例
例1 メソッドを宣言しているクラスの取得
<?php
class Foo
{
public function bar(\DateTime $datetime)
{
}
}
class Baz extends Foo
{
}
$param = new \ReflectionParameter(['Baz', 'bar'], 0);
var_dump($param->getDeclaringClass());
上の例の出力は以下となります。
object(ReflectionClass)#2 (1) { ["name"]=> string(3) "Foo" }
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google