反射
在线手册:中文  英文

ReflectionMethod 类

(PHP 5)

简介

ReflectionMethod 类报告了一个方法的有关信息。

类摘要

ReflectionMethod extends ReflectionFunctionAbstract implements Reflector {
/* 常量 */
const integer IS_STATIC = 1 ;
const integer IS_PUBLIC = 256 ;
const integer IS_PROTECTED = 512 ;
const integer IS_PRIVATE = 1024 ;
const integer IS_ABSTRACT = 2 ;
const integer IS_FINAL = 4 ;
/* 属性 */
public $name ;
public $class ;
/* 方法 */
public __construct ( mixed $class , string $name )
public static string export ( string $class , string $name [, bool $return = false ] )
public Closure getClosure ( string $object )
public ReflectionClass getDeclaringClass ( void )
public int getModifiers ( void )
public ReflectionMethod getPrototype ( void )
public mixed invoke ( object $object [, mixed $parameter [, mixed $... ]] )
public mixed invokeArgs ( object $object , array $args )
public bool isAbstract ( void )
public bool isConstructor ( void )
public bool isDestructor ( void )
public bool isFinal ( void )
public bool isPrivate ( void )
public bool isProtected ( void )
public bool isPublic ( void )
public bool isStatic ( void )
public void setAccessible ( bool $accessible )
public string __toString ( void )
/* 继承的方法 */
final private void ReflectionFunctionAbstract::__clone ( void )
public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass ( void )
public ReflectionExtension ReflectionFunctionAbstract::getExtension ( void )
public string ReflectionFunctionAbstract::getName ( void )
abstract public void ReflectionFunctionAbstract::__toString ( void )
}

属性

name

Method name

class

Class name

预定义常量

ReflectionMethod 修饰符

ReflectionMethod::IS_STATIC

指示一个方法是静态(static)的。

ReflectionMethod::IS_PUBLIC

指示一个方法是 public 的。

ReflectionMethod::IS_PROTECTED

指示一个方法是 protected 的。

ReflectionMethod::IS_PRIVATE

指示一个方法是 private 的。

ReflectionMethod::IS_ABSTRACT

指示一个方法是 abstract 的。

ReflectionMethod::IS_FINAL

指示一个方法是 final 的。

Table of Contents


反射
在线手册:中文  英文

用户评论:

webseiten dot designer at googlemail dot com (2011-04-02 11:53:12)

Note that the public member $class contains the name of the class in which the method has been defined:

<?php
class {public function __construct() {}}
class 
extends {}

$method = new ReflectionMethod('B''__construct');
echo 
$method->class// prints 'A'
?>

no dot prob at gmx dot net (2006-06-02 01:09:12)

I have written a function which returns the value of a given DocComment tag.

Full example:

<?php

header
('Content-Type: text/plain');

class 
Example
{
    
/**
     * This is my DocComment!
     * 
     * @DocTag: prints Hello World!
     */
    
public function myMethod()
    {
        echo 
'Hello World!';
    }
}

function 
getDocComment($str$tag '')
{
    if (empty(
$tag))
    {
        return 
$str;
    }

    
$matches = array();
    
preg_match("/".$tag.":(.*)(\\r\\n|\\r|\\n)/U"$str$matches);

    if (isset(
$matches[1]))
    {
        return 
trim($matches[1]);
    }

    return 
'';
}

$method = new ReflectionMethod('Example''myMethod');

// will return Hello World!
echo getDocComment($method->getDocComment(), '@DocTag');

?>

Maybe you can add this functionality to the getDocComment methods of the reflection classes.

易百教程