pclose() 函数关闭由 popen() 打开的进程。
如果失败,该函数返回 FALSE。
pclose(pipe)
<?php$file = popen("/bin/ls","r");//some code to be executedpclose($file);?>