ReflectionClass
PHP Manual

ReflectionClass::getConstructor

(PHP 5)

ReflectionClass::getConstructorGets the constructor of the class

说明

public ReflectionMethod ReflectionClass::getConstructor ( void )

Gets the constructor of the reflected class.

参数

此函数没有参数。

返回值

A ReflectionMethod object reflecting the class' constructor.

范例

Example #1 Basic usage of 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"
}

参见


ReflectionClass
PHP Manual