(PHP 8 >= 8.3.0)
ReflectionMethod::createFromMethodName — 创建一个新的 ReflectionMethod
创建一个新的 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" }