ReflectionClass::getConstructor

(PHP 5, PHP 7, PHP 8)

ReflectionClass::getConstructor获取类的构造函数

说明

public ReflectionClass::getConstructor(): ?ReflectionMethod

获取反射类的构造函数。

参数

此函数没有参数。

返回值

一个 ReflectionMethod 对象,它反映类的构造函数,或者如果类没有构造函数,则为 null

范例

范例 #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"
}

参见

添加注释

用户贡献的注释 3 个注释

4
martin dot melka at gmail dot com
5 年前
如果当前类没有重写构造函数,此方法将返回父类的构造函数。

只有当类没有构造函数且其任何父类也没有构造函数时,才会返回 NULL。
7
Rob McVey
14 年前
发布一些示例代码,供任何想要尝试这些东西的人使用

<?php

class Say
{
private
$what_to_say;
public function
__construct($no_default, $word = "Hello World", $options = array('a', 'b'))
{
$this->what_to_say = $word;
}

public function
speak()
{
echo
$this->what_to_say;
}
}

$class = new ReflectionClass('Say');

$constructor = $class->getConstructor();

echo
$constructor;

/* 输出:

Method [ <user, ctor> public method __construct ] {
@@ /reflect.php 6 - 9

- Parameters [3] {
Parameter #0 [ <required> $no_default ]
Parameter #1 [ <optional> $word = 'Hello World' ]
Parameter #2 [ <optional> $options = Array ]
}
}

*/

$parameters = $constructor->getParameters();

var_export($parameters);

/* 输出:

array (
0 =>
ReflectionParameter::__set_state(array(
'name' => 'no_default',
)),
1 =>
ReflectionParameter::__set_state(array(
'name' => 'word',
)),
2 =>
ReflectionParameter::__set_state(array(
'name' => 'options',
)),
)

*/

$nl = "\n";
echo
"$nl\tParameters$nl";
foreach(
$parameters as $param)
{
echo
"****** $" . $param->name . " ******$nl";
echo
"Nullable:\t\t" . $param->allowsNull() . $nl
."Default Value:\t\t";
echo (
$param->isDefaultValueAvailable()) ? $param->getDefaultValue() : "None";
echo
$nl ."Is Array:\t\t";
echo (
$param->isArray()) ? "Yes" : "No";
echo
$nl . "Optional:\t\t";
echo (
$param->isOptional()) ? "Yes" : "No";
echo
$nl;
}

/* 输出:

Parameters
****** $no_default ******
Nullable: 1
Default Value: None
Is Array: No
Optional: No
****** $word ******
Nullable: 1
Default Value: Hello World
Is Array: No
Optional: Yes
****** $options ******
Nullable: 1
Default Value: Array
Is Array: No
Optional: Yes

*/

?>

为了阐明 ReflectionParemeter::isArray() 可能令人困惑的行为,如果参数具有类型提示,它将返回 true

<?php
...
public function
__construct($no_default, $word = "Hello World", array $options = array('a', 'b'))
...
?>

现在,对 $options 参数调用 isArray() 将返回 true
0
jochem at drecomm dot nl
13 年前
旧构造函数也被视为构造函数

<?php

class SomeClass {

function
SomeClass($some_arg) {
}

}

$refl = new ReflectionClass('SomeClass');

var_dump($refl->isInstantiable()); // bool(true)

echo $refl->getConstructor();

/* 输出:
Method [ <user, ctor> public method SomeClass ] {
@@ /var/www/vhosts/api.example.com/httpdocs/testRefl.php 5 - 6

- Parameters [1] {
Parameter #0 [ <required> $some_arg ]
}
}
*/

?>

更多行为

<?php

class SomeClass {

function
funcA($arg1, $arg2) {

}

}

$refl = new ReflectionClass('SomeClass');

var_dump($refl->isInstantiable()); // bool(true)

var_dump($refl->getConstructor()); // NULL

/* --------------- */

class AnotherClass {

private function
__construct() {
}

function
funcB($arg1, $arg2) {

}

}

$refl = new ReflectionClass('AnotherClass');

var_dump($refl->isInstantiable()); // bool(false)

echo $refl->getConstructor();
/*
Method [ <user, ctor> private method __construct ] {
@@ /testRefl.php 22 - 23
}
*/

?>

在 PHP 5.2.4 上测试
To Top