php-src/ext/standard/tests/general_functions
Wez Furlong a3a2dcd8a9 Relieve scripts of the burden of ensuring that all pipes are closed prior
to calling proc_close().
Implement proc_get_status(resource $process) which returns an array of
information about a process created with proc_open().
The information includes:
array(
	"command" => string "name of the command",
	"pid" => long process identifier,
	"running" => bool true if the process is still running
	"exitcode" => long exitcode if the process exited
	"signaled" => bool true if the process was signaled
	"termsig" => long signal number if signaled
	"stopped" => bool true if the process is stopped
	"stopsig" => long signal number if stopped
);
2003-01-15 18:54:03 +00:00
..
001.phpt Added tests for %e & %E 2002-10-15 12:08:02 +00:00
002.phpt (PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2 2002-04-01 17:03:01 +00:00
003.phpt fix and regression test for Bug #16473 2002-04-07 19:46:45 +00:00
004.data fgetcsv() will now work correct with empty fields in tab delimited files 2000-12-14 14:18:36 +00:00
004.phpt - Fix tests to work with CLI 2002-03-05 09:00:56 +00:00
005.phpt Adding test for is_scalar(). 2000-12-18 21:24:25 +00:00
006.phpt (PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2 2002-04-01 17:03:01 +00:00
007.phpt Add combined base64 and md5 test 2002-08-21 01:26:21 +00:00
008.phpt Force float for the float test 2002-11-16 23:45:58 +00:00
009.phpt Adding SHA1 tests. 2002-11-19 23:25:57 +00:00
getopt.phpt Added getopt() test. 2002-12-11 17:38:28 +00:00
proc_open.phpt Relieve scripts of the burden of ensuring that all pipes are closed prior 2003-01-15 18:54:03 +00:00