在 PHP 中运行具有实时输出的进程
在提供实时输出的网页上运行进程可能是一项很有价值的功能。例如,执行“ping”过程并逐行捕获其输出可以增强用户体验。要在 PHP 中实现此目的,请考虑以下方法:
要运行具有实时输出的进程,可以使用 proc_open()。下面是一个示例:
$cmd = "ping 127.0.0.1"; $descriptorspec = array( 0 => array("pipe", "r"), // stdin is a pipe that the child will read from 1 => array("pipe", "w"), // stdout is a pipe that the child will write to 2 => array("pipe", "w") // stderr is a pipe that the child will write to ); flush(); $process = proc_open($cmd, $descriptorspec, $pipes, realpath('./'), array()); echo "<pre class="brush:php;toolbar:false">"; if (is_resource($process)) { while ($s = fgets($pipes[1])) { print $s; flush(); } } echo "";
在此示例中,proc_open() 用于运行“ping 127.0.0.1”命令并实时捕获其输出。 Descriptorspec 数组定义进程的文件描述符。具体来说,它将 stdin 设置为子进程读取的管道,将 stdout 设置为子进程写入的管道,将 stderr 设置为子进程写入的管道。
flush()用于确保立即显示子进程的任何输出。 is_resource($process) 检查子进程是否仍在运行。 while 循环不断地从子进程的 stdout 管道读取输出并将其打印到网页,让您可以实时查看 ping 结果。
杀死正在运行的进程
要在用户离开页面时终止子进程,可以使用 proc_terminate()。对于“ping”进程,您可以使用以下代码:
proc_terminate($process); ?>
这将终止 ping 进程并阻止其继续运行。
以上是如何在 PHP 中运行和管理具有实时输出的流程?的详细内容。更多信息请关注PHP中文网其他相关文章!