ReflectionMethod::getDeclaringClass
(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getDeclaringClass — メソッドが宣言されているクラスを取得する
パラメータ
この関数にはパラメータはありません。
戻り値
そのメソッドが属するクラスをあらわす ReflectionClass オブジェクトを返します。
例
例1 ReflectionMethod::getDeclaringClass() の例
<?php
class HelloWorld {
protected function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
var_dump($reflectionMethod->getDeclaringClass());
?>
上の例の出力は以下となります。
object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" }
+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