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.
简而言之,phpinfo()打印:
phpinfo()
Environment ... APACHE_LOG_DIR /var/log/apache2 ...
$_ENV是空的。
$_ENV
getenv('APACHE_LOG_DIR')返回/var/log。
getenv('APACHE_LOG_DIR')
/var/log
我想要的是 phpinfo() 返回的值。如何获取 Apache 日志的实际位置?更具体地说,我想要一个可以通过error_login 创建新文件的目录。
error_log
variables_order决定创建哪个超全局,如手册中所述。E必须存在才能被$_ENV创建。
variables_order
E