La función ReflectionClass::getReflectionConstants() es una función incorporada en PHP que se utiliza para devolver una array de objetos ReflectionClassConstant.
Sintaxis:
array ReflectionClass::getReflectionConstants( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una array de objetos ReflectionClassConstant.
Los siguientes programas ilustran la función ReflectionClass::getReflectionConstants() 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 getReflectionConstants() function $a = $A->getReflectionConstants(); // Getting an array of ReflectionClassConstant objects. print_r($a); ?>
Producción:
Array ( [0] => ReflectionClassConstant Object ( [name] => First [class] => Company ) [1] => ReflectionClassConstant Object ( [name] => Second [class] => Company ) )
Programa 2:
<?php // Using the ReflectionClass() function $A = new ReflectionClass('ReflectionClass'); // Calling the getReflectionConstants() function $a = $A->getReflectionConstants(); // Getting an array of ReflectionClassConstant objects. print_r($a); ?>
Producción:
Array ( [0] => ReflectionClassConstant Object ( [name] => IS_IMPLICIT_ABSTRACT [class] => ReflectionClass ) [1] => ReflectionClassConstant Object ( [name] => IS_EXPLICIT_ABSTRACT [class] => ReflectionClass ) [2] => ReflectionClassConstant Object ( [name] => IS_FINAL [class] => ReflectionClass ) )
Referencia: https://secure.php.net/manual/en/reflectionclass.getreflectionconstants.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