proc_open在Windows 7中运行时间过长

时间:2013-05-06 17:01:37

标签: php proc-open elfinder

我正在使用elfinder 2.0,但它在Windows 7中不起作用。原因是proc_open()函数执行时间太长。例如,tar --version之类的简单命令会使用proc_open()执行25秒。 这是代码:

$command = 'tar --version';
$descriptorspec = array(
    array('pipe', 'r'),
    array('pipe', 'w'),
    array('pipe', 'w'),
);
$pipes = null;
$process = proc_open($command, $descriptorspec, $pipes, null, null);

如何解决问题?

0 个答案:

没有答案