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.
我想在 ac 程序的 apache 环境变量中设置一些信息,我想登录到自定义日志文件。我正在寻找一些类似于 PHP 函数的 capache_setenv函数。
apache_setenv
指针将不胜感激。谢谢
看看howto write CGI program,这可能是要走的路。无论如何,我不确定是否可以以这种方式设置 apache vars。
http://httpd.apache.org/docs/2.2/howto/cgi.html
你可以通过调用这个函数来做到这一点
apr_table_addn(r->subprocess_env, "env_name", "env_value");
其中env_name和env_value分别是环境变量的名称和值。并且r是request_rec结构指针对象
env_name
env_value
r
request_rec