The "getconstant" method can be used to get the value associated with a constant
of a particular class that you are examining.
The following code snippet shows this:
<?php
class Test{
const ONE = "Number one";
const TWO = "Number two";
}
$obj = new ReflectionClass( "Test" );
echo $obj->getconstant( "ONE" )."\n";
echo $obj->getconstant( "TWO" )."\n";
?>
output:
Number one
Number two
ReflectionClass::getConstant
(PHP 5)
ReflectionClass::getConstant — Obtener una constante definida
Descripción
Devuelve la constante definida.
Advertencia
Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.
Parámetros
-
name -
Nombre de la constante.
Valores devueltos
Valor de la constante.
Bhimsen ¶
1 year ago
