php - 环境未传递给 proc_open 打开的进程

标签 php process proc-open

我在将环境变量传递到使用 proc_open 打开的进程时遇到问题。 我在 https://www.php.net/manual/en/function.proc-open.php 上找到了以下示例

<?php
$descriptorspec = array(
   0 => array("pipe", "r"),  // stdin is a pipe that the child will read from
   1 => array("pipe", "w"),  // stdout is a pipe that the child will write to
   2 => array("file", "/tmp/error-output.txt", "a") // stderr is a file to write to
);

$cwd = '/tmp';
$env = array('some_option' => 'aeiou');

$process = proc_open('php', $descriptorspec, $pipes, $cwd, $env);

if (is_resource($process)) {
    // $pipes now looks like this:
    // 0 => writeable handle connected to child stdin
    // 1 => readable handle connected to child stdout
    // Any error output will be appended to /tmp/error-output.txt

    fwrite($pipes[0], '<?php print_r($_ENV); ?>');
    fclose($pipes[0]);

    echo stream_get_contents($pipes[1]);
    fclose($pipes[1]);

    // It is important that you close any pipes before calling
    // proc_close in order to avoid a deadlock
    $return_value = proc_close($process);

    echo "command returned $return_value\n";
}
?>

该示例应该像文档中所说的那样回显 env 数组。但在我的机器(PHP 5.4.6-1ubuntu1.4 (cli))上,回显数组是空的。是否有一些 Suhosin 或 php.ini 限制禁止将环境变量传递给进程?我不知道。

最佳答案

如果 $_ENV 为空,您应该查看您的 variables_order ini 设置并确保该值包含 E

但是,您可以使用 $_SERVER 代替:

fwrite($pipes[0], '<?php print_r($_SERVER); ?>');

它也将包含环境变量,并且应该在 99.999% 的服务器上启用(我猜)

关于php - 环境未传递给 proc_open 打开的进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20288822/

相关文章:

PHP 使用 proc_open 并捕获 'echo' 命令的标准输出

PHP proc_open 多次打开

javascript - 将 SQL 的表输出样式化到相应的 Bootstrap 列中

javascript - jquery .find() 没有返回值

macos - 如何在 Mac 上启动新应用程序?

c# - shell 中的 stderr 和日志文件中的副本

php - 为什么 PHP 在向以 proc_open 启动的进程写入 4096 字节后会挂起?

php - 结帐完成后使用 PHP 发送电子邮件

java - 无法在 Ubuntu 上通过 PHP 执行 Java jar 文件

java - 等待完成的 Java 进程