PHP Doku:: Gets the method prototype (if there is one). - reflectionmethod.getprototype.html

Verlauf / Chronik / History: (6) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzVariablen- und typbezogene ErweiterungenReflectionThe ReflectionMethod classReflectionMethod::getPrototype

Ein Service von Reinhard Neidl - Webprogrammierung.

The ReflectionMethod class

<<ReflectionMethod::getModifiers

ReflectionMethod::invoke>>

ReflectionMethod::getPrototype

(PHP 5)

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

Beschreibung

public ReflectionMethod ReflectionMethod::getPrototype ( void )

Returns the methods prototype.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

A ReflectionMethod instance of the method prototype.

Fehler/Exceptions

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

Beispiele

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

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)