summaryrefslogtreecommitdiff
path: root/ext/standard/proc_open.h
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Fixed bug #38542 (proc_get_status() returns wrong PID on windows)Nuno Lopes2006-12-311-1/+4
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Integrate Shanes patch that allows specifying the cwd and environmentWez Furlong2003-02-161-0/+12
| | | | | for the child process created by proc_open().
* Relieve scripts of the burden of ensuring that all pipes are closed priorWez Furlong2003-01-151-0/+37
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 );