ReflectionMethod::getPrototype
(PHP 5 >= 5.1.2, PHP 7, PHP 8)
ReflectionMethod::getPrototype — メソッドのプロトタイプを (存在すれば) 取得する
パラメータ
この関数にはパラメータはありません。
戻り値
メソッドのプロトタイプの ReflectionMethod オブジェクトを返します。
エラー / 例外
メソッドがプロトタイプを持たない場合に ReflectionException をスローします。
例
例1 ReflectionMethod::getPrototype() の例
<?php
class Hello {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
class HelloWorld extends Hello {
public function sayHelloTo($name) {
return 'Hello world: ' . $name;
}
}
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
var_dump($reflectionMethod->getPrototype());
?>
上の例の出力は以下となります。
object(ReflectionMethod)#2 (2) { ["name"]=> string(10) "sayHelloTo" ["class"]=> string(5) "Hello" }
参考
- ReflectionMethod::getModifiers() - メソッドの修飾子を取得する
- ReflectionMethod::hasPrototype() - メソッドがプロトタイプを持つかを調べる
+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