动态访问类常量
在 PHP 中,使用变量动态访问类常量可能具有挑战性。但是,有两种有效的方法可以实现此目的:
使用常量函数
constant() 函数接受表示常量名称的字符串参数并对其求值:
<br>self:: <br>{</p> <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false">const MY_CONST = 'myval'; static function test() { $c = 'MY_CONST'; return constant('self::'. $c); }
}
echo A::test(); // 输出:myval
在此示例中,constant() 函数计算字符串“self::MY_CONST”并返回 MY_CONST 常量的值。
使用反射
反射允许您动态访问有关类、方法和常量的信息:
<br>$ref = new ReflectionClass( 'A');<br>$constName = 'MY_CONST';<br>echo $ref->getConstant($constName); // 输出:myval<br>
这里,为A类创建了ReflectionClass对象。然后 getConstant() 方法返回 MY_CONST 常量的值。
以上是如何在 PHP 中动态访问类常量?的详细内容。更多信息请关注PHP中文网其他相关文章!