#
77ae01ac |
| 12-Jul-2003 |
Moriyoshi Koizumi |
Oops, this is not needed though. |
#
cd52986a |
| 12-Jul-2003 |
Moriyoshi Koizumi |
Fixed leaks that occurs if the third parameter already contains a valid value. |
Revision tags: php-5.0.0b1, php-4.3.3RC1 |
|
#
f68c7ff2 |
| 10-Jun-2003 |
James Cox |
updating license information in the headers. |
Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2, RELEASE_0_6, RELEASE_0_5, init |
|
#
456b6cbe |
| 23-Mar-2003 |
Shane Caraveo |
The environment should *never* be magic quoted. |
Revision tags: php-4.3.2RC1 |
|
#
216d1d00 |
| 17-Feb-2003 |
Shane Caraveo |
you know it's time to get away from the keyboard when you do this. fix my last fix |
#
738d4f40 |
| 17-Feb-2003 |
Derick Rethans |
- Style polizei |
#
eb6b7e80 |
| 17-Feb-2003 |
Shane Caraveo |
fix it the right way |
#
354a7d80 |
| 17-Feb-2003 |
Shane Caraveo |
If you pass NULL, you do not get a NULL value, make sure it is. |
#
7e92f636 |
| 16-Feb-2003 |
Wez Furlong |
Integrate Shanes patch that allows specifying the cwd and environment for the child process created by proc_open(). |
Revision tags: php-4.3.1 |
|
#
27e3d647 |
| 15-Feb-2003 |
Wez Furlong |
Add optional signal parameter to proc_terminate. |
#
c3c24054 |
| 15-Feb-2003 |
Wez Furlong |
Add proc_terminate() function to forcibly kill off a process created with proc_open(). |
Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix |
|
#
6efe0085 |
| 24-Jan-2003 |
Ilia Alshanetsky |
Fixed compile warning. |
#
a3a2dcd8 |
| 15-Jan-2003 |
Wez Furlong |
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
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 );
show more ...
|
#
1a314027 |
| 15-Jan-2003 |
Wez Furlong |
- Move proc_open code to a source file of it's own. - Tidy up that netware mess by performing a configure check which will define the symbol PHP_CAN_SUPPORT_PROC_OPEN if PHP can support pro
- Move proc_open code to a source file of it's own. - Tidy up that netware mess by performing a configure check which will define the symbol PHP_CAN_SUPPORT_PROC_OPEN if PHP can support proc_open. - Protected the proc_open specific code with #ifdef PHP_CAN_SUPPORT_PROC_OPEN so that user-space scripts can use function_exists and react accordingly. ** Heads Up Win32: You need to add ext/standard/proc_open.c to the DSP and ** #define PHP_CAN_SUPPORT_PROC_OPEN in the w32 config header.
show more ...
|