当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP pclose()用法及代码示例


pclose() 函数关闭由 popen() 打开的管道。它返回运行的进程的终止状态。如果出现错误,则返回 -1。

用法

pclose(file_pointer)

参数

  • file_pointer −指定管道

返回

pclose() 函数返回运行的进程的终止状态。如果出现错误,则返回 -1。

示例

<?php
   // opening a pipe
   $file_pointer = popen("/bin/ls", "r");
   pclose($file_pointer);
?>

输出

TRUE

让我们再看一个例子。

示例

<?php
   // opening a pipe
   $file_pointer = popen("/executable/setup.exe", "r");
   pclose($file_pointer);
?>

输出

TRUE

相关用法


注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 pclose() function in PHP。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。