pclose
(PHP 4, PHP 5, PHP 7, PHP 8)
pclose — 關閉程序檔案指針
返回值
返回執行的程序的終止狀態。發生錯誤時會返回 -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.