PHP | ReflectionClass implementa la función Interface()

La función ReflectionClass::implementsInterface() es una función incorporada en PHP que se usa para verificar si la interfaz especificada está presente o no.

Sintaxis:

bool ReflectionClass::implementsInterface( string $interface )

Parámetros: Esta función acepta un único parámetro $interfaz que contiene la interfaz especificada que se está comprobando.

Valor de retorno: esta función devuelve verdadero en caso de éxito o falso en caso de falla.

Los siguientes programas ilustran la función ReflectionClass::implementsInterface() en PHP:

Programa 1:

<?php
  
// Defining some interfaces
interface Colleges { }
interface Departments { }
interface Students { }
interface Companies { }
  
// Initialising a class of Interfaces
class Interfaces implements Colleges, 
        Departments, Students, Companies { }
  
// Using ReflectionClass over the class Interfaces
$A = new ReflectionClass("Interfaces");
  
// Calling the implementsInterface() function
// over the Interface 'Colleges'
$B = $A->implementsInterface('Colleges');
  
// Getting the value true or false
var_dump($B);
?>
Producción:

bool(true)

Programa 2:

<?php
   
// Defining a SuperClass interface Company 
interface Company {
    public function GFG();
}
  
// Defining a different interface Company1
interface Company1 {
    public function GeeksforGeeks();
}
  
// Defining a subclass Departments
class Departments implements Company {
    public function GFG() {}
}
  
// Using ReflectionClass() over the 
// subclass Departments
$reflect = new ReflectionClass('Departments');
  
// Calling implementsInterface() function
$A = $reflect->implementsInterface('Company1');
  
// Getting the value either true or false
var_dump($A);
  
?>
Producción:

bool(false)

Referencia: https://www.php.net/manual/en/reflectionclass.implementsinterface.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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *