📜  PHP | ReflectionClass getConstructor()函数

📅  最后修改于: 2022-05-13 01:56:19.723000             🧑  作者: Mango

PHP | ReflectionClass getConstructor()函数

ReflectionClass::getConstructor()函数是PHP中的一个内置函数,用于返回指定类的构造函数,如果该类没有任何构造函数,则返回 NULL。

句法:

ReflectionMethod ReflectionClass::getConstructor( void )

参数:此函数不接受任何参数。

返回值:此函数返回指定类的构造函数,如果该类没有任何构造函数,则返回 NULL。

下面的程序说明了PHP中的 ReflectionClass::getConstructor()函数:

方案一:

getConstructor();
  
// Getting the constructor for the defined Class
var_dump($constructor);
?>

输出:

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

方案二:

// Defining a user-defined class Company
class Company {
    public function GeeksforGeeks() { }
    static function gfg() { }
}
    
// Using ReflectionClass over the class Company
$A = new ReflectionClass("Company");
    
// Calling the getConstructor() function
$B = $A->getConstructor();
    
// Getting the constructor for the defined Class
// or NULL if the constructor is not present
var_dump($B);
?>
输出:
NULL

参考: https://www. PHP.net/manual/en/reflectionclass.getconstructor。 PHP