La función ReflectionClass::isInstantiable() es una función incorporada en PHP que se utiliza para comprobar si la clase especificada es instanciable o no.
Sintaxis:
bool ReflectionClass::isInstantiable( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve VERDADERO si la clase especificada es instanciable, de lo contrario devuelve FALSO.
Los siguientes programas ilustran la función ReflectionClass::isInstantiable() en PHP:
Programa 1:
<?php // Initializing a user-defined Class Departments class Departments { public function CSE() { } } // Using ReflectionClass() over the // user-defined class Departments $class = new ReflectionClass('Departments'); // Calling the isInstantiable() function $instance = $class->isInstantiable(); // Getting the value true or false var_dump($instance); ?>
Producción:
bool(true)
Programa 2:
<?php // Initializing a interface named as TestFunction interface TestFunction { function F1(); function F2(); } // Using ReflectionClass() over the // specified interface $class = new ReflectionClass('TestFunction'); // Calling the isInstantiable() function and // getting the value true or false var_dump($class->isInstantiable()); ?>
Producción:
bool(false)
Referencia: https://www.php.net/manual/en/reflectionclass.isinstantiable.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