array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.proc-close.php', 1 => 'proc_close', 2 => 'Close a process opened by proc_open and return the exit code of that process', ), 'up' => array ( 0 => 'ref.exec.php', 1 => 'Program execution Функції', ), 'prev' => array ( 0 => 'function.passthru.php', 1 => 'passthru', ), 'next' => array ( 0 => 'function.proc-get-status.php', 1 => 'proc_get_status', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/exec/functions/proc-close.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

proc_close

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

proc_closeClose a process opened by proc_open() and return the exit code of that process

Опис

proc_close(resource $process): int

proc_close() is similar to pclose() except that it only works on processes opened by proc_open(). proc_close() waits for the process to terminate, and returns its exit code. Open pipes to that process are closed when this function is called, in order to avoid a deadlock - the child process may not be able to exit while the pipes are open.

Параметри

process

The proc_open() resource that will be closed.

Значення, що повертаються

Returns the termination status of the process that was run. In case of an error then -1 is returned.

Зауваження:

Якщо PHP скомпільовано з --enable-sigchild, значення, що повертається цією функцією, не визначене.