|
ReflectionMethod::getDeclaringClass(PHP 5) ReflectionMethod::getDeclaringClass — Gets declaring class for the reflected method. ОписаниеGets the declaring class for the reflected method. Список параметровУ этой функции нет параметров. Возвращаемые значенияA ReflectionClass object of the class that the reflected method is part of. Примеры
Пример #1 ReflectionMethod::getDeclaringClass() example
<?php Результат выполнения данного примера: object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" } |
|