最新的Web开发教程
 

PHP pclose() Function


<完整PHP文件系统参考

定义和用法

pclose()函数关闭通过打开的管道popen()

该函数返回失败FALSE。

句法

pclose(pipe)

参数 描述
pipe 需要。 指定由开管popen()

<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>

<完整PHP文件系统参考