La función ReflectionClass::getConstants() es una función incorporada en PHP que se usa para devolver una array de los nombres de constantes especificados.
Sintaxis:
array ReflectionClass::getConstants( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una array de los nombres de constantes especificados.
Los siguientes programas ilustran la función ReflectionClass::getConstants() en PHP:
Programa 1:
<?php // Declaring a class named as Company class Company { // Defining some constants const First = "GeeksforGeeks"; const Second = "GFG"; } // Using the ReflectionClass() function // over the Company class $A = new ReflectionClass('Company'); // Calling the getConstants() function $a = $A->getConstants(); // Getting an array of the constants print_r($a); ?>
Producción:
Array ( [First] => GeeksforGeeks [Second] => GFG )
Programa 2:
<?php // Declaring a class named as Departments class Departments { // Defining some constants const First = "CSE"; const Second = "ECE"; const Third = "EE"; const Fourth = "Mechanical"; } // Using the ReflectionClass() function // over the Departments class $A = new ReflectionClass('Departments'); // Calling the getConstants() function $a = $A->getConstants(); // Getting an array of the constants print_r($a); ?>
Producción:
Array ( [First] => CSE [Second] => ECE [Third] => EE [Fourth] => Mechanical )
Referencia: https://www.php.net/manual/en/reflectionclass.getconstants.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