ReflectionMethod::createFromMethodName

(PHP 8 >= 8.3.0)

ReflectionMethod::createFromMethodName创建一个新的 ReflectionMethod

描述

public static ReflectionMethod::createFromMethodName(string $method): static

创建一个新的 ReflectionMethod

参数

method

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

返回值

如果成功,则返回一个新的 ReflectionMethod

错误/异常

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

示例

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

<?php

class Foo {
public function
bar() {

}
}

$methodInfo = ReflectionMethod::createFromMethodName("Foo::bar");
var_dump($methodInfo);
?>

上面的示例将输出

object(ReflectionMethod)#1 (2) {
  ["name"]=>
  string(3) "bar"
  ["class"]=>
  string(3) "Foo"
}
添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top