php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.proc-close.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Close a process opened by proc_open and return the exit code of that process.				  				 				 				 passthru				 proc_get_status				 Program execution Functions				 PHP Manual								 				  proc_close				  (PHP 4 >= 4.3.0, PHP 5)proc_close — Close a process opened by proc_open() and return the exit code of that process.								 								 				  Description				  				   int proc_close				    ( resource $process				   )								  				   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.  If you have open pipes to that process, you				   should fclose() them prior to calling this function in				   order to avoid a deadlock - the child process may not be able to exit				   while the pipes are open.				  				 												 				  Parameters				  				   								    								     process												     								      				       The proc_open() resource that will				       be closed.				      				     								    								   								  				 												 				  Return Values				  				   Returns the termination status of the process that was run.				  				 																 passthru				 proc_get_status				 Program execution Functions				 PHP Manual											

相关资源