ReflectionClass::getConstructor
ReflectionClass::getConstructor
(PHP 5, PHP 7)
ReflectionClass::getConstructor - 获取类的构造函数
描述
public ReflectionMethod ReflectionClass::getConstructor ( void )
获取反射类的构造函数。
参数
该函数没有参数。
返回值
反映类的构造函数的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"
}
另请参阅
- ReflectionClass::getName() - 获取类名
← ReflectionClass::getConstants
ReflectionClass::getDefaultProperties →