2017-09-29 19 views
2

例は以下の通りです:私はgetStr(「A」)を使用する場合PHP:文字列からクラスの定数の取得値

<?php 

class test{ 
    const A = "1"; 
    const B = "2"; 

    public function getStr($a){ 
     echo self::$a; 
    } 

} 

$c = new test(); 
$c->getStr("A"); 


?> 

は、どのように私は、ウィンドウ内の変数「A」をエコーすることができます

+0

それは@AnkurGargはい、それはサポートを行うPHPバージョン5.4 –

答えて

1

それはReflectionClass::getConstantsで行うことができます。

Try this code snippet here

<?php 

ini_set('display_errors', 1); 

class test{ 
    const A = "1"; 
    const B = "2"; 

    public function getStr($a){ 

     $class= new ReflectionClass(self::class);//passing class name to ReflectionClass 
     echo $class->getConstant($a);//getting required constant. 
    } 

} 

$c = new test(); 
$c->getStr("A"); 
+0

ため '構築物()'関数を作ることができます。このドキュメントはhttp://php.net/manual/en/reflectionclass.getconstants.phpで確認できます。 –

+0

にサポートしますあなたは、その –

0

定数()あなたは、一定の値を取得する必要がありますが、その名前がわからない場合に便利です。私。それは変数に格納されるか、関数によって返されます。

Constant Doc

echo constant("self::".$a); 
関連する問題