Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码:
const T = 'test'; const B = 'boat'; $const_var = getenv('FOO');
在我的 VirtualHost 部分,我有:
SetEnv FOO T
显然 $const_var 评估为 character T。
T
我想要做的是能够通过使用环境变量的值作为参考来使用本地 const T 的值。有没有办法做到这一点?
您可以使用该constant()函数间接解析该值。
constant()
print constant($_ENV["FOO"]);
或者在你的情况下$const_var作为参数。
$const_var