我正在尝试动态创建一个常量名,然后获取该值。
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值仍然包含常量的NAME,而不是VALUE。
我尝试了第二级间接$$constant_name
但是这会使它成为变量而不是常量。
有人可以对此有所了解吗?
答案 0 :(得分:132)
http://dk.php.net/manual/en/function.constant.php
echo constant($constant_name);
答案 1 :(得分:56)
并证明这也适用于类常量:
class Joshua {
const SAY_HELLO = "Hello, World";
}
$command = "HELLO";
echo constant("Joshua::SAY_$command");
答案 2 :(得分:5)
要在类中使用动态常量名称,可以使用反射功能(因为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