Get Token's Name with Reflection API.
        Posted  
        
            by Mark Tomlin
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Mark Tomlin
        
        
        
        Published on 2010-04-25T16:51:24Z
        Indexed on 
            2010/04/25
            17:03 UTC
        
        
        Read the original article
        Hit count: 299
        
php5
|reflection
I want to find the token's name passed by augment into a function.
class Norm
{
    const STR_NORM = 0;
    const INT_NORM = 0;
}
function foo($Arg1, $Arg2 = NULL)
{
    getConstName($Arg1); # Should Return STR_NORM;
    return $Arg1, $Arg2;
}
echo foo(Norm::STR_NORM);
Is there any way to implement getConstName via the PHP Reflection API?
© Stack Overflow or respective owner