(PHP 8 >= 8.2.0)
ReflectionMethod::hasPrototype — Returns whether a method has a prototype
У цієї функції немає параметрів.
Приклад #1 ReflectionMethod::hasPrototype() example
<?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)