ReflectionMethod::getPrototype

(PHP 5 >= 5.1.2, PHP 7)

ReflectionMethod::getPrototypeGets the method prototype (if there is one)

Opis

public ReflectionMethod::getPrototype ( void ) : ReflectionMethod

Returns the methods prototype.

Parametry

Ta funkcja nie posiada parametrów.

Zwracane wartości

A ReflectionMethod instance of the method prototype.

Błędy/Wyjątki

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

Przykłady

Przykład #1 ReflectionMethod::getPrototype() 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->getPrototype());
?>

Powyższy przykład wyświetli:

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

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top