标题说了算。我想将此与proc_open一起使用,以将一些变量附加到当前环境。
$current_env = get_all_env_vars_magically();
$env = array_merge($current_env, $new_vars);
$ph = proc_open($command, array(1 => array('pipe', 'w')),
$pipes, dirname(__FILE__), $env);
编辑:$_ENV
默认为空/未填充。$_SERVER
包含的远不止环境变量。