标签: php string constants
让我说我已经定义了常量ERROR_0,如下所示:
ERROR_0
define("ERROR_0","An error occurred.")
现在,假设我有字符串“ERROR_0”,但我想将其转换为常量ERROR_0,以便我可以获得字符串“发生错误”。我怎么能这样做?
谢谢!
答案 0 :(得分:44)
使用constant功能
constant
echo constant("ERROR_0");