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 は文字に評価されますT。
T
私がやりたいことは、環境変数の値を参照として使用して、ローカルの const T の値を使用できるようにすることです。それを行う方法はありますか?
この関数を使用してconstant()、値を間接的に解決できます。
constant()
print constant($_ENV["FOO"]);
または、あなたの場合$const_varはパラメーターとして。
$const_var