82

定数名を動的に作成してから値を取得しようとしています。

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それでは定数ではなく変数になります。

誰かがこれに光を当てることができますか?

4

3 に答える 3

154

http://dk.php.net/manual/en/function.constant.php

echo constant($constant_name);
于 2010-10-22T08:46:05.640 に答える
77

そして、これがクラス定数でも機能することを示すために:

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

$command = "HELLO";
echo constant("Joshua::SAY_$command");
于 2013-02-27T20:10:09.260 に答える
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
于 2015-02-18T11:38:16.060 に答える