<完整PHP文件系统参考
定义和用法
的pclose()函数关闭通过打开的管道popen() 。
该函数返回失败FALSE。
句法
pclose(pipe)
参数 | 描述 |
---|---|
pipe | 需要。 指定由开管popen() |
例
<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>
<完整PHP文件系统参考
的pclose()函数关闭通过打开的管道popen() 。
该函数返回失败FALSE。
pclose(pipe)
参数 | 描述 |
---|---|
pipe | 需要。 指定由开管popen() |
<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>