History log of /php-src/sapi/cli/php_cli.c (Results 251 – 275 of 424)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 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 ...

Revision tags: RELEASE_1_2_4, RELEASE_1_2_1, php-5.2.4, RELEASE_1_5, php-5.2.4RC3, php-5.2.4RC2
# 50293835 08-Aug-2007 Stanislav Malyshev

remove unneeded variables

Revision tags: php-5.2.4RC1, BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND
# 3285bd83 04-Jun-2007 Antony Dovgal

fix folding

Revision tags: php-5.2.3, RELEASE_1_4, php-5.2.3RC1, RELEASE_1_2_0
# 9edf1dc6 06-May-2007 Johannes Schlüter

- MFH: Fix build without reflection

# 3cd6bc54 05-May-2007 Marcus Boerger

- MFH --ri does not require ext/Reflection
- MFH --ini to show ini files being used

Revision tags: php-4.4.7, php-5.2.2, php-5.2.2RC2
# 42170968 25-Apr-2007 Hannes Magnusson

MFH: php --ri main

# 75d8d28e 17-Apr-2007 foobar

- Fix a possible leak when multiple -c parameters are used

Revision tags: RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1, RELEASE_1_0_1, php-4.4.6, php-4.4.6RC1
# dfbc2245 22-Feb-2007 Antony Dovgal

MFH

# 4a95928d 21-Feb-2007 Antony Dovgal

MFH: implement PHP_STREAM_FLAG_NO_CLOSE and avoid hacks

# 748b6fde 20-Feb-2007 Antony Dovgal

MFH: make use of startup hooks

Revision tags: php-4.4.5
# 38201d8d 08-Feb-2007 Marcus Boerger

- MFH php --ri <extension>

Revision tags: php-5.2.1, RELEASE_1_0_0RC1, php-4.4.5RC2, php-5.2.1RC4, php-5.2.1RC3, php-4.4.5RC1, php-5.2.1RC2
# 4223aa4d 01-Jan-2007 Sebastian Bergmann

MFH: Bump year.

# 41b55d9b 21-Dec-2006 Antony Dovgal

MFH

Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6, php-5.2.0RC5
# be18d5f3 22-Sep-2006 Ilia Alshanetsky

Restore support for unquoted -d options

# 7d14dad0 19-Sep-2006 Dmitry Stogov

MFH: Fixed mess with CGI/CLI -d command line option (now it works with cgi; constants are working exactly like in php.ini; with FastCGI -d affects all requests).

# 4b257a1c 15-Sep-2006 Antony Dovgal

fix leak with `php -c /path -h`

1...<<11121314151617