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.
从这里引用:
设置一个内部环境变量,然后可供 Apache HTTP Server 模块使用,并传递给 CGI 脚本和 SSI 页面。
它适用于直接嵌入到 Apache 中的 mod_php 或 mod_perl 吗?
对于 perl,使用 PerlSetEnv。
在 Apache 配置中:
PerlSetEnv VAR1 value PerlSetEnv VAR2 "value with spaces"
然后,在 perl 代码中,照常访问:
print STDERR $ENV{VAR1}, "\n";