在字符串中包含PHP常量是否有更短的方法?例如,而不是:
define("MYCONST","this");
echo "hello, my const is set to: " . MYCONST . ", and that is that.";
例如,我最近在字符串中包含数组时了解了{}
标记,这意味着您不必逃脱。有没有类似的方法来做常量,所以我不必每次都逃避字符串包括它们?
即
echo "hello, my const is set to: {MYCONST}, and that is that.";
..但这似乎不起作用:(
答案 0 :(得分:2)
没有。不幸的是,如果你想在其中使用常量,你必须连接字符串。
答案 1 :(得分:0)
你不能以这种方式使用常数。你需要添加它的字符串。否则,还有另一种方式:
define("MYCONST","this");
echo "hello, my const is set to: " , MYCONST , ", and that is that.";
hello, my const is set to: this, and that is that.
答案 2 :(得分:0)
它不起作用{}
将值转换为变量。