<?php
$ds=array(1 => array("pipe", "w"));
$ds1=array(1 => array("pipe", "w"));
proc_open("notepad.exe", $ds, $pipes);
proc_open("notepad.exe", $ds1, $pipes);
?>
一度に 2 つの notepad.exe プロセスを作成したいだけですが、最初の notepad.exe が強制終了されるまで、2 番目のプロセスは作成されませんでした。一度にマルチプロセスを作成するには?