PHP 8.5.8 Released!

ReflectionMethod::createFromMethodName

(PHP 8 >= 8.3.0)

ReflectionMethod::createFromMethodNameCreates a new ReflectionMethod

说明

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

Creates a new ReflectionMethod .

参数

method

Class name and method name delimited by ::.

返回值

Returns a new ReflectionMethod on success.

错误/异常

A ReflectionException is thrown if the given method does not exist.

示例

示例 #1 ReflectionMethod::createFromMethodName() example

<?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"
}

发现了问题?

了解如何改进此页面提交拉取请求报告一个错误
+添加备注

用户贡献的备注

此页面尚无用户贡献的备注。

AltStyle によって変換されたページ (->オリジナル) /