动态访问类常量
当您在运行时只知道常量的名称时,访问类常量可能是一个挑战。通过利用系统函数或反射,可以克服这个限制。
使用常量函数
常量函数简化了常量检索。它能够处理使用定义常量和类常量定义的常量:
<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>
使用反射类
对于更复杂的方法,可以使用反射:
<code class="php">$ref = new ReflectionClass('A'); $constName = 'MY_CONST'; echo $ref->getConstant($constName); // Output: myval</code>
以上是如何在 PHP 中动态访问类常量?的详细内容。更多信息请关注PHP中文网其他相关文章!