ReflectionClass::getMethod

(PHP 5, PHP 7)

ReflectionClass::getMethod��ȡһ���෽���� ReflectionMethod��

˵��

public ReflectionClass::getMethod ( string $name ) : ReflectionMethod

��ȡһ���෽���� ReflectionMethod��

����

name

Ҫ����ķ������ơ�

����ֵ

һ�� ReflectionMethod��

�����쳣

�����������������׳� ReflectionException �쳣��

����

Example #1 ReflectionClass::getMethod() �Ļ����÷�

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

�������̻������

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

�μ�