(PHP 8 >= 8.2.0)
ReflectionMethod::hasPrototype — メソッドがプロトタイプを持つかを調べる
この関数にはパラメータはありません。
例1 ReflectionMethod::hasPrototype() の例
<?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->hasPrototype());
?>
上の例の出力は以下となります。
bool(true)