我正在使用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);
如何解决问题?