(PHP 5 >= 5.1.2, PHP 7)
ReflectionMethod::getPrototype — ���ط���ԭ�� (�������)
�˺���û�в�����
����ԭ�͵�һ�� ReflectionMethod ʵ��
�������û��ԭ�ͣ�����һ�� ReflectionException
Example #1 ReflectionMethod::getPrototype() example
<?php
class Hello {
public function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
class HelloWorld extends Hello {
public function sayHelloTo($name) {
return 'Hello world: ' . $name;
}
}
$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
var_dump($reflectionMethod->getPrototype());
?>
�������̻������
object(ReflectionMethod)#2 (2) { ["name"]=> string(10) "sayHelloTo" ["class"]=> string(5) "Hello" }