PHP Conference Japan 2024

ReflectionMethod::__construct

(PHP 5, PHP 7, PHP 8)

ReflectionMethod::__construct构造 ReflectionMethod

描述

public ReflectionMethod::__construct(对象|字符串 $objectOrMethod, 字符串 $method)

备用签名(不支持命名参数)

public ReflectionMethod::__construct(字符串 $classMethod)
警告

从 PHP 8.4.0 开始,备用签名已弃用,请改用 ReflectionMethod::createFromMethodName()

构造一个新的 ReflectionMethod

参数

objectOrMethod

包含该方法的类名或对象(类的实例)。

method

方法的名称。

classMethod

:: 分隔的类名和方法名。

错误/异常

如果给定的方法不存在,则会抛出 ReflectionException

范例

示例 #1 ReflectionMethod::__construct() 示例

<?php
Counter
{
private static
$c = 0;

/**
* 增加计数器
*
* @final
* @static
* @access public
* @return int
*/
final public static function increment()
{
return ++
self::$c;
}
}

// 创建 ReflectionMethod 类的实例
$method = new ReflectionMethod('Counter', 'increment');

// 打印基本信息
printf(
"===> The %s%s%s%s%s%s%s method '%s' (which is %s)\n" .
" declared in %s\n" .
" lines %d to %d\n" .
" having the modifiers %d[%s]\n",
$method->isInternal() ? '内部' : '用户定义' ,
$method->isAbstract() ? ' 抽象' : '',
$method->isFinal() ? ' 最终' : '',
$method->isPublic() ? ' 公共' : '',
$method->isPrivate() ? ' 私有' : '',
$method->isProtected() ? ' 受保护' : '',
$method->isStatic() ? ' 静态' : '',
$method->getName(),
$method->isConstructor() ? '构造函数' : '常规方法' ,
$method->getFileName(),
$method->getStartLine(),
$method->getEndline(),
$method->getModifiers(),
implode(' ', Reflection::getModifierNames($method->getModifiers()))
);

// 打印文档注释
printf("---> 文档:\n %s\n", var_export($method->getDocComment(), true));

// 打印静态变量(如果存在)
if ($statics= $method->getStaticVariables()) {
printf("---> 静态变量: %s\n", var_export($statics, true));
}

// 调用方法
printf("---> 调用结果: ");
var_dump($method->invoke(NULL));
?>

以上示例将输出类似以下内容

===> The user-defined final public static method 'increment' (which is a regular method)
     declared in /Users/philip/cvs/phpdoc/test.php
     lines 14 to 17
     having the modifiers 261[final public static]
---> Documentation:
 '/**
     * Increment counter
     *
     * @final
     * @static
     * @access  public
     * @return  int
     */'
---> Invocation results in: int(1)

参见

添加注释

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top