������봴���ڽ����ר�Ű汾������˵���ڴ������������� HTML ʱ�������ڷ��ʵij�Ա������ȡ��������ʹ��ʵ�õķ������� ����Լ�������չ���ǡ�
Example #1 ��չ���õ���
<?php
/**
* My Reflection_Method class
*/
class My_Reflection_Method extends ReflectionMethod
{
public $visibility = array();
public function __construct($o, $m)
{
parent::__construct($o, $m);
$this->visibility = Reflection::getModifierNames($this->getModifiers());
}
}
/**
* Demo class #1
*
*/
class T {
protected function x() {}
}
/**
* Demo class #2
*
*/
class U extends T {
function x() {}
}
// �����Ϣ
var_dump(new My_Reflection_Method('U', 'x'));
?>
�������̵���������ڣ�
object(My_Reflection_Method)#1 (3) { ["visibility"]=> array(1) { [0]=> string(6) "public" } ["name"]=> string(1) "x" ["class"]=> string(1) "U" }
�������д�˹��캯������ס��д�κβ���Ĵ���֮ǰҪ�ȵ��ø���Ĺ��캯���� ����ô�����ᵼ�����µĽ���� Fatal error: Internal error: Failed to retrieve the reflection object