PHP pclose() 函数
实例
打开和关闭到command参数中指定的程序的管道:
<?php
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>
$file = popen("/bin/ls","r");
//some code to be executed
pclose($file);
?>
定义和用法
pclose() 函数关闭由 popen() 打开的管道。
语法
pclose(pipe)
参数值
参数 | 描述 |
---|---|
pipe | 必需。规定由 popen() 打开的管道。 |
说明
该函数返回运行的进程的终止状态。
若出错,则返回 false。
技术细节
返回值: | 终止状态,失败时-1 |
---|---|
PHP 版本: | 4.0+ |