在需要间接访问类常量的情况下,特别是使用保存常量名称的变量,实现此功能可能具有挑战性。幸运的是,有两种实用方法可以实现此目的:
常量函数可以访问通过定义常量和类常量定义的常量。在给定场景中:
<code class="php">class A { const MY_CONST = 'myval'; static function test() { $c = 'MY_CONST'; return constant('self::'. $c); } } echo A::test(); // Output: myval</code>
或者,ReflectionClass 提供另一种动态访问类常量的方法:
<code class="php">$ref = new ReflectionClass('A'); $constName = 'MY_CONST'; echo $ref->getConstant($constName); // Output: myval</code>
以上是如何在 PHP 中动态访问类常量?的详细内容。更多信息请关注PHP中文网其他相关文章!