Source Code:
(back to article)
<?php $descriptorspec = [ 0 => ["pipe", "r"], // stdin ist eine Pipe, von der das Kind lesen wird 1 => ["pipe", "w"], // stdout ist eine Pipe, in die das Kind schreiben wird 2 => ["pipe", "w"], // stderr ist eine Pipe, in die das Kind schreiben wird ]; $process = proc_open('echo "Hello World!"', $descriptorspec, $pipes); if (is_resource($process)) { while ($s = fgets($pipes[1])) { print $s; } proc_close($process); }
Result:
Report an issue