(PHP 8 >= 8.2.0)
ReflectionMethod::hasPrototype — Retorna se um método tem um protótipo
Esta função não possui parâmetros.
Exemplo #1 Exemplo de 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());
?>
O exemplo acima produzirá:
bool(true)