ReflectionClass
在线手册:中文  英文

ReflectionClass::getConstant

(PHP 5)

ReflectionClass::getConstant获取定义过的一个常量

说明

public mixed ReflectionClass::getConstant ( string $name )

获取定义过的一个常量。

Warning

本函数还未编写文档,仅有参数列表。

参数

name

常量的名称。

返回值

常量的值。

参见


ReflectionClass
在线手册:中文  英文

用户评论:

Bhimsen (2012-05-31 17:46:56)

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

易百教程