PHP ReflectionClass::getMethod 反射函数

  • 定义和用法

    ReflectionClass::getMethod - 获取一个类方法的 ReflectionMethod。
  • 版本支持

    PHP4 PHP5 PHP7
    不支持 支持 支持
  • 语法

    ReflectionClass::getMethod( string $name  )
    ReflectionClass::getMethod() 获取一个类方法的 ReflectionMethod。
  • 参数

    参数 必需的 描述
    name 要反射的方法名称。
  • 返回值

    一个 ReflectionMethod 对象。
    如果方法不存在则会抛出 ReflectionException 异常。
  • 示例

    $class = new ReflectionClass('ReflectionClass');
    $method = $class->getMethod('getMethod');
    var_dump($method);
    
    尝试一下
  • 相关页面

    ReflectionClass::getMethods() - 获取方法的数组