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