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 — Gets defined constant
Descrição
Gets the defined constant.
Aviso
Esta função não está documentada; somente a lista de argumentos está disponível.
Parâmetros
-
name -
Name of the constant.
Valor Retornado
Value of the constant.
Bhimsen ¶
1 year ago
