PHP中的动态常量名称


79

我试图动态创建一个常量名称,然后获取该值。

define( CONSTANT_1 , "Some value" ) ;

// try to use it dynamically ...
$constant_number = 1 ;
$constant_name = ("CONSTANT_" . $constant_number) ;

// try to assign the constant value to a variable...
$constant_value = $constant_name;

但是我发现$ constant值仍然包含常量的名称,而不是VALUE。

我也尝试了间接的第二层,$$constant_name但这会使它成为变量而不是常量。

有人可以对此有所启发吗?

Answers:



71

并证明这也适用于类常量:

class Joshua {
    const SAY_HELLO = "Hello, World";
}

$command = "HELLO";
echo constant("Joshua::SAY_$command");

10
值得一提的是,如果常量位于当前名称空间之外的类中,则可能需要指定全限定(命名空间)的类名-不管是否在文件中为该类添加了“用途”。
2014年

1
因为有很好的例子,所以这个答案很好。那正是我在寻找的:)谢谢!
ElChupacabra 2015年

6
@lopside该::class常量可用于检索完全限定的名称空间,例如:constant(YourClass::class . '::CONSTANT_' . $yourVariable);
Willem-Aart

1
需要注意的是::class关键字是因为PHP 5.5可用
T30

9

要在类中使用动态常量名称,可以使用反射功能(自php5起):

$thisClass = new ReflectionClass(__CLASS__);
$thisClass->getConstant($constName);

例如:如果您只想过滤类中的特定(SORT_ *)常量

class MyClass 
{
    const SORT_RELEVANCE = 1;
    const SORT_STARTDATE = 2;

    const DISTANCE_DEFAULT = 20;

    public static function getAvailableSortDirections()
    {
        $thisClass = new ReflectionClass(__CLASS__);
        $classConstants = array_keys($thisClass->getConstants());

        $sortDirections = [];
        foreach ($classConstants as $constName) {
            if (0 === strpos($constName, 'SORT_')) {
                $sortDirections[] =  $thisClass->getConstant($constName);
            }
        }

        return $sortDirections;
    }
}

var_dump(MyClass::getAvailableSortDirections());

结果:

array (size=2)
  0 => int 1
  1 => int 2
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.