|
ReflectionMethod::getPrototype(PHP 5) ReflectionMethod::getPrototype — Gets the method prototype (if there is one). ОписаниеReturns the methods prototype. Список параметровУ этой функции нет параметров. Возвращаемые значенияA ReflectionMethod instance of the method prototype. ОшибкиA ReflectionException exception is thrown if the method does not have a prototype. Примеры
Пример #1 ReflectionMethod::getPrototype() example
<?php Результат выполнения данного примера: object(ReflectionMethod)#2 (2) { ["name"]=> string(10) "sayHelloTo" ["class"]=> string(5) "Hello" } |
|