History log of /PHP-7.4/ext/standard/exec.c (Results 126 – 150 of 237)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1, RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2
# 917648a2 06-Feb-2005 Ilia Alshanetsky

Fixed possible un-initialized var on error.


Revision tags: php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1, php-5.0.0RC4, php-5.0.0, php-4.3.8
# 11371cd0 12-Jul-2004 Ilia Alshanetsky

Missing patch.


Revision tags: php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1
# 3e0cbfb0 18-May-2004 Ilia Alshanetsky

Fixed command line escaping routines for win32.


Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0, php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split
# 17d420e5 21-Jan-2004 Ilia Alshanetsky

Fixed bug #26938 (exec() has problems reading long lines).


Revision tags: php-4.3.5RC1
# dbeb4158 08-Jan-2004 Andi Gutmans

- A belated happy holidays and PHP 5


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# 112f424f 13-Dec-2003 Derick Rethans

- Fixed bug #26615 (patch by runekl at opoint dot com)


# 2b7b909e 19-Nov-2003 Ilia Alshanetsky

Fixed bug #26285 (escapeshellarg() uses wrong quotes on windows).


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
# 075e66cc 26-Sep-2003 Hartmut Holzgraefe

signed/unsigned compiler warning fixes


Revision tags: RELEASE_0_7
# 6a7dde29 28-Aug-2003 Sascha Schumann

kill warnings


Revision tags: php-4.3.3, php-4.3.3RC4
# ed40ae26 11-Aug-2003 Ilia Alshanetsky

emalloc -> safe_emalloc


Revision tags: RELEASE_0_5_3, php-4.3.3RC3
# 522bcba0 07-Aug-2003 Zeev Suraski

Fix docline


Revision tags: RELEASE_0_5_2
# 02e0e089 05-Aug-2003 Ilia Alshanetsky

Fixed bug #18291 (escapeshellcmd() can now handle quoted arguments).


Revision tags: RELEASE_1_2b5, BEFORE_ARG_INFO, php-4.3.3RC2, 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
# 0c5548e6 16-Apr-2003 Moriyoshi Koizumi

Fixed implicit cast issue with is*() and to*() functions


Revision tags: php-4.3.2RC1
# 695ae92c 26-Feb-2003 Ilia Alshanetsky

1) Make the output of system() binary safe
2) Solved a memory leak when the return_value variable passed by reference is
not an integer in system()/exec()/passthru().
3) Solved a bug i

1) Make the output of system() binary safe
2) Solved a memory leak when the return_value variable passed by reference is
not an integer in system()/exec()/passthru().
3) Solved a bug in exec(), which would make it append to the 2nd parameter
(passed by reference) if the parameter is an array instead of overwriting it.
4) Changed the code to use the streams code, resulting in a smaller code base.
5) Various cleanups resulting in reduction of overall code base inside the file
by ~ 1/3.
6) Speed improvements of ~2.5 times compared to previous performance (based on
attached PHP script).

show more ...


# aee0c18b 25-Feb-2003 Ilia Alshanetsky

Made shell_exec() use streams, this simplifies the code and in some cases
makes it a little faster too.


# f29964e2 25-Feb-2003 Ilia Alshanetsky

Fixed bug #22414 and added a test case for it.


# 3bff5c04 20-Feb-2003 Ilia Alshanetsky

Fixed bug #22308 (optimized passthru, code is now ~40 times faster).


# 0ad5cac9 18-Feb-2003 Ilia Alshanetsky

By popular demand nice() is renamed to proc_nice().
A better error message for proc_nice() failure.


# 0fd1009f 18-Feb-2003 Ilia Alshanetsky

Added nice() function, which allows changing of priority for the current
process.


Revision tags: php-4.3.1, PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 71e9f8cd 18-Jan-2003 Ilia Alshanetsky

Removed pointless memory allocation checks.


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


# 2e52c112 03-Jan-2003 Anantha Kesari H Y

Modified for NetWare.


# 830298be 03-Jan-2003 Anantha Kesari H Y

Modified for NetWare.


# b506f5c8 31-Dec-2002 Sebastian Bergmann

Bump year.


12345678910