定数名を動的に作成し、値を取得しようとしています。
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ではなく定数のNAMEがまだ含まれていることがわかります。
同様に第2レベルのインダイレクションも試しました$$constant_name
しかし、それはそれを定数ではなく変数にするでしょう。
誰かがこれに光を当てることができますか?
http://dk.php.net/manual/en/function.constant.php
echo constant($constant_name);
そして、これがクラス定数でも機能することを実証するために:
class Joshua {
const SAY_HELLO = "Hello, World";
}
$command = "HELLO";
echo constant("Joshua::SAY_$command");
クラスで動的定数名を使用するには、リフレクション機能を使用できます(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