已在 php 中定义的常量

2022-08-30 10:26:50

我有一个函数,我正在尝试运行,但它显示消息为CONSTANT已经定义。

我试图放一个关于函数的条件,说“如果定义”,但仍然什么都没有。有没有办法忽略这一点并查看输出?


答案 1

替换此:

define('constant', 'value');

有了这个:

if (!defined('constant')) define('constant', 'value');

答案 2

定义()

例:

/* Note the use of quotes, this is important.  This example is checking
 * if the string 'TEST' is the name of a constant named TEST */
if (defined('TEST')) {
    echo TEST;
}

推荐