我正在使用elfinder 2.0,但它在 Windows 7 中不起作用。原因是该proc_open()
函数执行时间过长。例如,一个简单的命令,例如tar --version
执行 25 秒proc_open()
。这是这段代码:
$command = 'tar --version';
$descriptorspec = array(
array('pipe', 'r'),
array('pipe', 'w'),
array('pipe', 'w'),
);
$pipes = null;
$process = proc_open($command, $descriptorspec, $pipes, null, null);
我该如何解决这个问题?