關閉程序檔案指針

pclose

(PHP 4, PHP 5, PHP 7, PHP 8)

pclose關閉程序檔案指針

說明

pclose(resource $handle): int

關閉用 popen() 打開的指向管道的檔案指針。

參數

handle

檔案指針必須有效,且必須是成功呼叫 popen() 所返回的。

返回值

返回執行的程序的終止狀態。發生錯誤時會返回 -1

範例

示例 #1 pclose() 例子

<?php
$handle 
popen('/bin/ls''r');
pclose($handle);
?>

註釋

注意: Unix Only:

proc_close() is internally implemented using the waitpid(3) system call. To obtain the real exit status code the pcntl_wexitstatus() function should be used.

參見

  • popen() - 打開程序檔案指針

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *