downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ReflectionClass::getConstants> <ReflectionClass::export
[edit] Last updated: Fri, 17 May 2013

view this page in

ReflectionClass::getConstant

(PHP 5)

ReflectionClass::getConstantGets defined constant

Descrizione

public mixed ReflectionClass::getConstant ( string $name )

Gets the defined constant.

Avviso

Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.

Elenco dei parametri

name

Name of the constant.

Valori restituiti

Value of the constant.

Vedere anche:



add a note add a note User Contributed Notes ReflectionClass::getConstant - [1 notes]
up
0
Bhimsen
1 year ago
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

 
show source | credits | stats | sitemap | contact | advertising | mirror sites