php8.5
Home/ Manual/ reflection / reflectionmethod/ ReflectionMethod::getPrototype

ReflectionMethod::getPrototype

PHP function Edit on GitHub ✎

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

Gets the method prototype (if there is one)

Description

ReflectionMethod::getPrototype(): ReflectionMethod

Returns the methods prototype.

Parameters Parameters

Return Values

A ReflectionMethod instance of the method prototype.

Errors/Exceptions

A ReflectionException exception is thrown if the method does not have a prototype.

Examples

ReflectionMethod::getPrototype example

php
<?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());
?>

The above example will output:

output
object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(10) "sayHelloTo"
  ["class"]=>
  string(5) "Hello"
}

See Also

  • ReflectionMethod::getModifiers
  • ReflectionMethod::hasPrototype

Source: reference/reflection/reflectionmethod/getprototype.xml · from the official PHP manual (php/doc-en)