问答详情
源自:4-4 PHP-常量如何取值

constant函数优势?

怎么理解左侧提到constant函数可以动态的输出不同的常量,在使用上要灵活、方便???????????

提问者:Helianthuserin 2016-02-18 14:47

个回答

  • LXW_1993
    2016-02-18 14:56:12
    已采纳

    <?php
    define('PKEY1', 'abc');
    define('PKEY2', 'def');
    $i = 1;
    $a = 'PKEY';
    echo constant($a . $i); // abc
    echo constant($a . ++$i); // def
    ?>