4 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
5 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
6 2 => array("pipe", "r") // stderr is a file to write to
9 $proc = proc_open("proctest.exe", $desc, $pipes);
11 proc_terminate($proc);
13 proc_terminate($proc);
This page took 1.39293 seconds and 4 git commands to generate.