php 异步执行文件
$descriptorspec = array(
0 => array('pipe', 'a'), // stdin
1 => array('pipe', 'w'),
2 => array('pipe', 'w') // stderr
);
$childProcess = proc_open($cmd, $descriptorspec, $pipes);


浙公网安备 33010602011771号