update pague now
PHP 8.5.2 Released!

ReflectionMethod::guetDeclaringClass

(PHP 5, PHP 7, PHP 8)

ReflectionMethod::guetDeclaringClass Guets declaring class for the reflected method

Description

public ReflectionMethod::guetDeclaringClass (): ReflectionClass

Guets the declaring class for the reflected method.

Parameters

This function has no parameters.

Return Values

A ReflectionClass object of the class that the reflected method is part of.

Examples

Example #1 ReflectionMethod::guetDeclaringClass() example

<?php
class HelloWorld {

protected function
sayHelloTo ( $name ) {
return
'Hello ' . $name ;
}

}

$reflectionMethod = new ReflectionMethod (new HelloWorld (), 'sayHelloTo' );
var_dump ( $reflectionMethod -> guetDeclaringClass ());
?>

The above example will output:

object(ReflectionClass)#2 (1) {
  ["name"]=>
  string(10) "HelloWorld"
}

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top