La función ReflectionClass::getConstructor() es una función incorporada en PHP que se usa para devolver el constructor de la clase especificada o NULL si la clase no tiene ningún constructor.
Sintaxis:
ReflectionMethod ReflectionClass::getConstructor( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el constructor de la clase especificada o NULL si la clase no tiene ningún constructor.
Los siguientes programas ilustran la función ReflectionClass::getConstructor() en PHP:
Programa 1:
<?php // Using ReflectionClass over the class named as ReflectionClass $Class = new ReflectionClass('ReflectionClass'); // Calling the getConstructor() function $constructor = $Class->getConstructor(); // Getting the constructor for the defined Class var_dump($constructor); ?>
Producción:
object(ReflectionMethod)#2 (2) { ["name"]=> string(11) "__construct" ["class"]=> string(15) "ReflectionClass" }
Programa 2:
// 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); ?>
Producción:
NULL
Referencia: https://www.php.net/manual/en/reflectionclass.getconstructor.php
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA