ReflectionClass
PHP Manual

ReflectionClass::getMethod

(PHP 5)

ReflectionClass::getMethodGets a ReflectionMethod for a class method.

Descrizione

public ReflectionMethod ReflectionClass::getMethod ( string $name )

Gets a ReflectionMethod for a class method.

Elenco dei parametri

name

The method name to reflect.

Valori restituiti

A ReflectionMethod.

Errori/Eccezioni

A ReflectionException if the method does not exist.

Esempi

Example #1 Basic usage of ReflectionClass::getMethod()

<?php
$class 
= new ReflectionClass('ReflectionClass');
$method $class->getMethod('getMethod');
var_dump($method);
?>

Il precedente esempio visualizzerĂ :

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(9) "getMethod"
  ["class"]=>
  string(15) "ReflectionClass"
}

Vedere anche:


ReflectionClass
PHP Manual