ReflectionClass::getConstructor

(PHP 5, PHP 7)

ReflectionClass::getConstructor��ȡ��Ĺ��캯��

˵��

public ReflectionClass::getConstructor ( void ) : ReflectionMethod

��ȡ�ѷ������Ĺ��캯����

����

�˺���û�в�����

����ֵ

һ�� ReflectionMethod ���󣬷�������Ĺ��캯�������ߵ��಻���ڹ��캯��ʱ���� NULL��

����

Example #1 ReflectionClass::getConstructor() �Ļ����÷�

<?php
$class 
= new ReflectionClass('ReflectionClass');
$constructor $class->getConstructor();
var_dump($constructor);
?>

�������̻������

object(ReflectionMethod)#2 (2) {
  ["name"]=>
  string(11) "__construct"
  ["class"]=>
  string(15) "ReflectionClass"
}

�μ�