(PHP 5, PHP 7)
ReflectionMethod::getDeclaringClass — ��ȡ���亯�����ò���������
��ȡ���亯��������һ������ࡣ ����ע��Ӧ���ǽ����������Ϊһ����أ����IJ�������Ϊ�����ԣ� ִ�����ݱ��ʲô��֪��������ķ����ܹ�˵��һЩ����
�˺���û�в�����
���� ReflectionClass ������������������
Example #1 ReflectionMethod::getDeclaringClass() example
<?php
class HelloWorld {
protected function sayHelloTo($name) {
return 'Hello ' . $name;
}
}
$reflectionMethod = new ReflectionMethod(new HelloWorld(), 'sayHelloTo');
var_dump($reflectionMethod->getDeclaringClass());
?>
�������̻������
object(ReflectionClass)#2 (1) { ["name"]=> string(10) "HelloWorld" }