PHP Filesystem 參考手冊
pclose()函數(shù)可以關(guān)閉由popen()打開的管道,并返回正在運行的進程的終止狀態(tài)。發(fā)生錯誤時,返回 -1。
int pclose ( resource $handle )
此函數(shù)可以關(guān)閉指向popen()打開的管道的文件指針。
<?php $file = popen("/bin/ls", "r"); pclose($file); ?>