History log of /PHP-5.6/sapi/cli/php_cli.c (Results 76 – 100 of 264)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.2.10RC1, php-5.3.0RC2
# e2576c35 09-Apr-2009 Hannes Magnusson

MFH: Inglés gramática


# 6cda8a27 09-Apr-2009 Hannes Magnusson

MFH: Fixed bug#47427 (-s outputs, not displays)


# 844ae2f3 08-Apr-2009 Felipe Pena

- MFH: Fix ZTS build


# 95b30894 07-Apr-2009 Arnaud Le Blanc

MFH: Fixed bug #47893 (CLI aborts on non blocking stdout)


Revision tags: php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 71ea9535 09-Jan-2009 Ilia Alshanetsky

MFH: Corrected fix for bug #46844 to only trigger on the 1st line of CLI
opened files.


# 2aba3684 02-Jan-2009 Marcus Boerger

- MFH Catch exceptions in cli -a


# f77719d8 31-Dec-2008 Marcus Boerger

MFH
- Changed dl() to be disabled by default. Enabled only when explicitly
registered by the SAPI layer. Enabled only with CLI, CGI and EMBED. (Dmitry)
[DOC]


# 08659c2d 31-Dec-2008 Sebastian Bergmann

MFH: Bump copyright year, 3 of 3.


Revision tags: NEWS, php-5.2.8, BEFORE_HEAD_NS_CHANGES_MERGE, php-5.3.0alpha3, php-5.3.0alpha2, php-5.2.7, php-5.2.7RC5
# cc2c7209 25-Nov-2008 Arnaud Le Blanc

MFH: Fixed endless loop in cli when ignore_user_abort is on


Revision tags: php-5.2.7RC4
# 8c4151ad 13-Nov-2008 Arnaud Le Blanc

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_n

Added header_remove() (chsc at peytz dotdk, Arnaud)

[DOC] proto void header_remove([string header_name])
Removes an HTTP header previously set using header()
The header_name parameter is optionnal, all headers are
removed if it is not set

[SAPIs] The header_handler callback in sapi_module_struct has
been changed, it now take a new argument.

When it is set to SAPI_HEADER_DELETE, sapi_header->header is
the name of an header, header_handler has to delete it.

When it is set to SAPI_HEADER_DELETE_ALL, header_handler has
to delete all headers.

When sapi_header_op_enum is SAPI_HEADER_ADD or _REPLACE,
sapi_header->header is in the form "Name: value", header_handler
has to add or replace the given header.

In all cases, header_handler must not free sapi_header or
sapi_header->header. SAPI_HEADER_ADD must be returned if the
header has been added or replaced, or 0 in other cases.

show more ...


Revision tags: BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3, php-5.2.7RC2, php-5.2.7RC1
# 593e7c7d 14-Aug-2008 Antony Dovgal

MFH: nuke unused var


# e5e6f553 13-Aug-2008 Jani Taskinen

MFH


# 05376077 12-Aug-2008 Dmitry Stogov

Fixed bug #45779 (regression with shebang lines processing)


Revision tags: php-4.4.9, php-5.3.0alpha1
# 52652010 25-Jul-2008 Antony Dovgal

fix warnings


# aa31988e 24-Jul-2008 Arnaud Le Blanc

MFH: Allow filters to work on INPUT_SERVER in CLI (bug #44779)


# 28a22396 23-Jul-2008 Antony Dovgal

MFH: invert the logics - FLAG_FCLOSE -> FLAG_NO_FCLOSE


# fdfbfb96 22-Jul-2008 Felipe Pena

- MFH: Fixed bug #44246 (closedir() accepts a file resource opened by fopen())


Revision tags: php-4.4.9RC1, BEFORE_NEW_PARAMETER_PARSE, RELEASE_1_2_5, RELEASE_2_0_0b1, php-5.2.6, RELEASE_1_0_2, php-5.2.6RC5, php-5.2.6RC4, php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1
# c0b46836 25-Mar-2008 Marcus Boerger

- MFH Use sizeof rather than strlen and cleanup


# 45e327a6 18-Mar-2008 Rasmus Lerdorf

Add new empty child terminate sapi hook to the rest of the sapis


# 8c885b89 18-Mar-2008 Dmitry Stogov

Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php.
The following pseudo

Implemented concept of "delayed early binding" that allows opcode caches to perform class declaration (early and/or run-time binding) in exactly the same order as vanila php.
The following pseudo-code explains how it should be used in opcode cache.

function cache_compile_file($filename) {
if (!is_cached($filename)) {
...
orig_compiler_options = CG(compiler_optins);
CG(compiler_options) |= ZEND_COMPILE_IGNORE_INTERNAL_CLASSES |
ZEND_COMPILE_DELAYED_BINDING;
$op_array = orig_compile_file($filename);
CG(compiler_options) = orig_copiler_options;
...
} else {
$op_array = restore_from_cache($filename);
}
zend_do_delayed_early_binding($op_array);
}

show more ...


# af316021 16-Mar-2008 Marcus Boerger

- Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
This is against php-re2c repository versio

- Rewrite scanner to be based on re2c instead of flex
The full patch is available as:
http://php.net/~helly/php-re2c-5.3-20080316.diff.txt
This is against php-re2c repository version 98
An older patch against version 97 is available under:
http://php.net/~helly/php-re2c-97-20080316.diff.txt

show more ...


Revision tags: php-5.2.6RC2, php-5.2.6RC1, RELEASE_1_3_1
# 0ebb904b 03-Feb-2008 Marcus Boerger

- Small improvements, no malloc needed for the zval


# 8cab54a8 29-Jan-2008 Dmitry Stogov

Fixed bug #43968 (Extending internal class causes a crash)
The fix is a workaround for GCC optizer bug.


Revision tags: php-4.4.8
# d1dded87 31-Dec-2007 Sebastian Bergmann

MFH: Bump copyright year, 2 of 2.


Revision tags: php-4.4.8RC1, RELEASE_1_2_3, php-5.2.5, php-5.2.5RC2, php-5.2.5RC1, BEFORE_IMPORT_OF_MYSQLND_IN_5_3, RELEASE_1_2_2
# 2bc631fb 01-Oct-2007 Jani Taskinen

MFH:- Added common getopt implementation to core.
MFH:- Added long-option feature to getopt().
MFH:- Made getopt() available on win32 systems.
MFH: Patch by: David Soria Parra <dsp@php.n

MFH:- Added common getopt implementation to core.
MFH:- Added long-option feature to getopt().
MFH:- Made getopt() available on win32 systems.
MFH: Patch by: David Soria Parra <dsp@php.net>
[DOC]: These changes will be available from 5.3+

# Note: Fixed also tests and synced basic_functions.c with HEAD.

show more ...


1234567891011