Revision tags: php-5.3.0RC1 |
|
#
31c0af24 |
| 18-Mar-2009 |
Dmitry Stogov |
Fixed floating point mathematic speed degradation (Christian)
|
Revision tags: RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1 |
|
#
f704a507 |
| 16-Jan-2009 |
Pierre Joye |
- add EG(windows_version_info), set at init time once per instance contains a OSVERSIONINFOEX struct. It lets us determine easily on which windows version is used (for example)
|
#
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 |
|
#
ea45b713 |
| 25-Nov-2008 |
Dmitry Stogov |
Added support for namespaces with brackets. (Greg)
|
Revision tags: php-5.2.7RC4, BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3, php-5.2.7RC2, php-5.2.7RC1 |
|
#
32f9d0e1 |
| 14-Aug-2008 |
Marcus Boerger |
- MFH Improve exception linking
|
#
106864bc |
| 11-Aug-2008 |
Marcus Boerger |
- MFH Fix memleak with new error handling stack'ing
|
Revision tags: php-4.4.9, php-5.3.0alpha1 |
|
#
4f42ed39 |
| 24-Jul-2008 |
Moriyoshi Koizumi |
- Revived zend multibyte
|
Revision tags: php-4.4.9RC1 |
|
#
c3286f32 |
| 29-Jun-2008 |
Rui Hirokawa |
implemented again zend-multibyte for PHP 5.3
|
Revision tags: BEFORE_NEW_PARAMETER_PARSE, RELEASE_1_2_5, RELEASE_2_0_0b1, php-5.2.6, RELEASE_1_0_2, php-5.2.6RC5 |
|
#
6f20cea6 |
| 09-Apr-2008 |
Scott MacVicar |
Fixes to heredoc and cleanup of new re2c scanner. (Patch by Matt Wilmas)
|
Revision tags: php-5.2.6RC4 |
|
#
f66f55ed |
| 28-Mar-2008 |
Felipe Pena |
MFH: Implemented "jump label" operator (limited "goto") [DOC]
|
Revision tags: php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1 |
|
#
10afe5d9 |
| 18-Mar-2008 |
Rasmus Lerdorf |
Make the sigsetjmp change more robust. On systems that don't have sigsetjmp use setjmp. Windows is of course weird in that it seems to have sigsetjmp but not sigjmp_buf (??) so force it to
Make the sigsetjmp change more robust. On systems that don't have sigsetjmp use setjmp. Windows is of course weird in that it seems to have sigsetjmp but not sigjmp_buf (??) so force it to use setjmp in config.w32.h.in
show more ...
|
#
c9e0781d |
| 18-Mar-2008 |
Rasmus Lerdorf |
Use sigsetjmp and siglongjmp instead of setjmp/longjmp in order to be consistent in how we deal with the signal mask. POSIX doesn't specify what to do with the signal mask in setjmp/longjmp
Use sigsetjmp and siglongjmp instead of setjmp/longjmp in order to be consistent in how we deal with the signal mask. POSIX doesn't specify what to do with the signal mask in setjmp/longjmp which has resulted in the signal mask getting saved on *BSD and not getting saved on Linux. Making the behaviour explicit via sigsetjmp/siglongjmp gives us consistency and saves expensive sigprocmask() syscalls on *BSD.
show more ...
|
#
2b10c53a |
| 18-Mar-2008 |
Felipe Pena |
MFH: Dropped zend.ze1_compatibility_mode [DOC]
|
#
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 ...
|
#
fd0d44f0 |
| 08-Mar-2008 |
Felipe Pena |
User error handlers no longer catch supressed errors (patch by Etienne Kneuss)
|
Revision tags: php-5.2.6RC2, php-5.2.6RC1, RELEASE_1_3_1 |
|
#
0b682510 |
| 24-Jan-2008 |
Dmitry Stogov |
Changed EG(argument_stack) implementation.
|
#
fa47e900 |
| 21-Jan-2008 |
Dmitry Stogov |
Changed exception handling. Now each op_array doesn't contain ZEND_HANDLE_EXCEPTION opcode in the end
|
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 |
|
#
c3ab6bd0 |
| 20-Nov-2007 |
Dmitry Stogov |
Fixed bug #43136 (possible crash on script execution timeout. The EG(function_state_ptr) is completely removed, EG(current_execute_data)->function_state must be used instead)
|
Revision tags: php-5.2.5, php-5.2.5RC2, php-5.2.5RC1, BEFORE_IMPORT_OF_MYSQLND_IN_5_3, RELEASE_1_2_2 |
|
#
166266df |
| 29-Sep-2007 |
Dmitry Stogov |
Added support for Late Static Binding. (Dmitry, Etienne Kneuss)
|
#
f32ffe9b |
| 28-Sep-2007 |
Dmitry Stogov |
Namespaces
|
#
09b6f37f |
| 28-Sep-2007 |
Jani Taskinen |
MFH: - Added ".htaccess" style user-defined php.ini files support for CGI/FastCGI. - Added support for special [PATH=/opt/httpd/www.example.com/] sections in php.ini. All dir
MFH: - Added ".htaccess" style user-defined php.ini files support for CGI/FastCGI. - Added support for special [PATH=/opt/httpd/www.example.com/] sections in php.ini. All directives set in these sections will not be able to be overridden in user-defined ini-files or during runtime in the specified path. - Improved php.ini handling: . Added better error reporting for syntax errors in php.ini files . Allowed "ini-variables" to be used almost everywhere ini php.ini files . Allowed using alphanumeric/variable indexes in "array" ini options . Fixed get_cfg_var() to be able to return "array" ini options - Fixed bug #27372 (parse error loading browscap.ini at apache startup) - Fixed bug #42069 (parse_ini_file() allows using some non-alpha numeric characters)
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, php-5.2.4RC1, BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND, php-5.2.3, RELEASE_1_4, php-5.2.3RC1, RELEASE_1_2_0, php-4.4.7, php-5.2.2, php-5.2.2RC2, RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1, RELEASE_1_0_1, php-4.4.6, php-4.4.6RC1, php-4.4.5, 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.
|
Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6, php-5.2.0RC5, php-5.2.0RC4 |
|
#
d6ee9d48 |
| 11-Sep-2006 |
Antony Dovgal |
MFH: fix #38779 (engine crashes when require()'ing file with syntax error through userspace stream wrapper)
|