PHP pclose() 函数
PHP pclose() 函数
完整的 PHP Filesystem 参考手册定义和用法
pclose() 函数关闭由 popen() 打开的进程。
如果失败,该函数返回 FALSE。
语法
pclose(pipe)
参数 | 描述 |
---|---|
pipe | 必需。规定由 popen() 打开的进程。 |
实例
<?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);
?>
完整的 PHP Filesystem 参考手册
相关文章
- PHP 运算符
- PHP Cookie
- PHP 过滤器
- PHP array_diff() 函数
- PHP array_fill_keys() 函数
- PHP array_intersect_uassoc() 函数
- PHP array_reduce() 函数
- PHP array_reverse() 函数
- PHP array_search() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_unshift() 函数
- PHP compact() 函数
- PHP key() 函数
- PHP natsort() 函数
- PHP sort() 函数
- PHP uasort() 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 MySQLi 函数