php8.5
Home/ Manual/ reflection / reflectionmethod/ ReflectionMethod::createFromMethodName

ReflectionMethod::createFromMethodName

PHP function Edit on GitHub ✎

(PHP 8 >= 8.3.0)

Creates a new ReflectionMethod

Description

ReflectionMethod::createFromMethodName(string $method): static

Creates a new ReflectionMethod.

Parameters

method

Class name and method name delimited by ::.

Return Values

Returns a new ReflectionMethod on success.

Errors/Exceptions

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

Examples

ReflectionMethod::createFromMethodName example

php
<?php

class Foo {
    public function bar() {

    }
}

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

The above example will output:

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

Source: reference/reflection/reflectionmethod/createfrommethodname.xml · from the official PHP manual (php/doc-en)