History log of /PHP-7.4/ext/standard/proc_open.c (Results 151 – 168 of 168)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# c29b17b8 05-Dec-2003 Wez Furlong

fix unix build....


# c92a2219 05-Dec-2003 Wez Furlong

Add optional array argument to proc_open() to specify additional
options for the child process.
The first option is "suppress_errors" which will disable any
dialog boxes that arise from m

Add optional array argument to proc_open() to specify additional
options for the child process.
The first option is "suppress_errors" which will disable any
dialog boxes that arise from missing DLL's and suppress the
GPF dialog.
Use this new feature in the test suite, so that crashing tests don't block the test run; useful for un-attended execution.

show more ...


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 436a0717 28-Aug-2003 Sascha Schumann

fix format strings


Revision tags: php-4.3.3, php-4.3.3RC4, RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2
# 4c823069 12-Jul-2003 Moriyoshi Koizumi

Add folding markers


# 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 ...


1234567