PHP | Función ReflectionClass getInterfaceNames()

La función ReflectionClass::getInterfaceNames() es una función incorporada en PHP que se usa para devolver una array de nombres de interfaz como valores.

Sintaxis:

array ReflectionClass::getInterfaceNames( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve una array de nombres de interfaz como valores.

Los siguientes programas ilustran la función ReflectionClass::getInterfaceNames() 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 getInterfaceNames() function
$B = $A->getInterfaceNames();
  
// Getting the name of the specified Interfaces
print_r($B);
?>

Producción:

Array
(
    [0] => Colleges
    [1] => Departments
    [2] => Students
    [3] => Companies
)

Programa 2:

<?php
   
// Using ReflectionClass 
$ReflectionClass = new ReflectionClass('ReflectionClass');
   
// Calling getInterfaceNames() functions
$A = $ReflectionClass->getInterfaceNames();
   
// Getting the name of the interfaces
var_dump($A);
?>

Producción:

array(1) {
  [0]=>
  string(9) "Reflector"
}

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