$process
) : intproc_close() 同 pclose() 函数类似, 只是 proc_close() 只能用来关闭由 proc_open() 函数打开的进程。 proc_close() 函数会等待进程终止, 并且返回进程的返回值。 如果有连接到进程的已经打开的管道, 那么需要在调用此函数之前调用 fclose() 函数来关闭管道, 否则会引发死锁 - 在管道处于打开状态时,子进程将不能退出。
返回进程的终止状态码。 如果发生错误,将返回 -1。
Note:
If PHP has been compiled with --enable-sigchild, the return value of this function is undefined.