PHP.nl

proc_terminate

proc_terminate

Kills a process opened by proc_open

bool **proc_terminate** resource $process int $signal

Signals a (created using ) that it should terminate. returns immediately and does not wait for the process to terminate. process``proc_open``proc_terminate

allows you terminate the process and

continue with other tasks. You may poll the process (to see if it has stopped yet) by using the function. proc_terminate``proc_get_status

process The that will be closed. proc_open``resource

signal This optional parameter is only useful on operating systems; you may specify a signal to send to the process using the system call. The default is . kill(2)``SIGTERM

Returns the termination status of the process that was run.

proc_open``proc_close``proc_get_status