ReflectionMethod::getDeclaringClass
(PHP 5, PHP 7, PHP 8)
ReflectionMethod::getDeclaringClass — Gets declaring class for the reflected method
Beschreibung
Gets the declaring class for the reflected method.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
A ReflectionClass object of the class that the reflected method is part of.
Beispiele
Beispiel #1 ReflectionMethod::getDeclaringClass() example
<?php
class HelloWorld {
protected function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
var_dump($reflectionMethod->getDeclaringClass());
?>
Das oben gezeigte Beispiel erzeugt folgende Ausgabe:
object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" }