pclose() 函数关闭由 popen() 打开的管道。
pclose()
pclose(pipe)
该函数返回运行的进程的终止状态。
若出错,则返回 false。
<?php$file = popen("/bin/ls","r");//一些要执行的代码pclose($file);?>
<?php
$file = popen("/bin/ls","r");
//一些要执行的代码
pclose($file);
?>