Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | zend_binary_strncasecmp_l used w/out declaration | Gustavo Lopes | 2012-08-26 | 1 | -0/+1 |
| | |||||
* | fix bug #54547 | Stanislav Malyshev | 2012-05-14 | 1 | -2/+22 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | Fixed bug #55644 (Math ops tests fail, diff min int value) | Dmitry Stogov | 2011-09-16 | 1 | -1/+1 |
| | |||||
* | - Zend engine part for bug #55158: Add SORT_NATURAL type to array_multisort | Derick Rethans | 2011-08-29 | 1 | -0/+2 |
| | | | | | (patch by Arpad Ray). | ||||
* | For 5.4, fix C++-style comments. For trunk, forward-port build fix. | Gwynne Raskind | 2011-08-07 | 1 | -0/+8 |
| | |||||
* | - should not have been applied | Pierre Joye | 2011-07-22 | 1 | -0/+1 |
| | |||||
* | - remove magic quotes support, functions are kept (see the NEWS entry for ↵ | Pierre Joye | 2011-07-22 | 1 | -1/+0 |
| | | | | the details) for BC reasons but do not allow to set enable MQ | ||||
* | - Removed accidental offsetof definition | Felipe Pena | 2011-07-03 | 1 | -5/+0 |
| | |||||
* | - Fixed compiler warning (redefinition of offsetof) | Felipe Pena | 2011-06-18 | 1 | -0/+2 |
| | |||||
* | Arithmetic speedup. Inlined most probable code-paths for arithmetic ↵ | Dmitry Stogov | 2011-05-23 | 1 | -0/+416 |
| | | | | operations directly into executor. | ||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | marked char pointer arguments as const in lots of | Hartmut Holzgraefe | 2010-10-14 | 1 | -7/+7 |
| | | | | | | places where strings pointed to are not modified to prevent compiler warnings about discarded qualifiers ... | ||||
* | sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-05 | 1 | -1/+1 |
| | |||||
* | MFH: | Matt Wilmas | 2009-06-04 | 1 | -30/+15 |
| | | | | | | | | | | | | | | | | | | Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming | ||||
* | sync with HEAD | Jani Taskinen | 2009-05-10 | 1 | -49/+45 |
| | |||||
* | MFH: Fixed bug #45877 (Array key '2147483647' left as string) | Matt Wilmas | 2009-03-18 | 1 | -12/+0 |
| | |||||
* | MFH: | Felipe Pena | 2009-01-05 | 1 | -0/+34 |
| | | | | | | - Fixed bug #46701 (Creating associative array with long values in the key fails on 32bit linux) Patch by Shire | ||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 1 | -4/+4 |
| | |||||
* | fix memnstr bug, by Laurent Gaffie | Stanislav Malyshev | 2008-08-05 | 1 | -0/+4 |
| | |||||
* | - MFH: Constify read-only arguments | Moriyoshi Koizumi | 2008-07-24 | 1 | -4/+4 |
| | |||||
* | Optimisation for zend_memnstr when the needle is only a single character. ↵ | Scott MacVicar | 2008-07-21 | 1 | -0/+4 |
| | | | | (Patch by Michal Dziemianko - GSoC08) | ||||
* | MFH | Antony Dovgal | 2008-03-19 | 1 | -1/+1 |
| | |||||
* | MFH: add zend_atol() | Antony Dovgal | 2008-03-19 | 1 | -0/+1 |
| | |||||
* | Reverted memrchr() patch, because it is broken on linux 64-bit | Dmitry Stogov | 2008-02-14 | 1 | -5/+0 |
| | |||||
* | Use memrchr() instead of zend_memrchr() if available. (Nuno) | Dmitry Stogov | 2008-02-13 | 1 | -0/+5 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | - MFH debug object helper | Marcus Boerger | 2007-10-11 | 1 | -0/+3 |
| | |||||
* | MFH: Added macros for managing zval refcounts and is_ref statuses | Yiduo (David) Wang | 2007-10-07 | 1 | -1/+1 |
| | |||||
* | MFH: Fixed compiler warnings | Jani Taskinen | 2007-07-21 | 1 | -1/+1 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | is_numeric_string() optimization | Ilia Alshanetsky | 2006-12-26 | 1 | -50/+120 |
| | | | | | # Original Patch by Matt Wilmas | ||||
* | MFH | Antony Dovgal | 2006-12-20 | 1 | -2/+6 |
| | |||||
* | Minor optimization (2-3%) from Brian Shire | Ilia Alshanetsky | 2006-12-11 | 1 | -1/+1 |
| | |||||
* | Improve tolower()-related functions on Windows and VC2005 by caching locale ↵ | Stanislav Malyshev | 2006-12-04 | 1 | -0/+13 |
| | | | | | | | | | and using tolower_l function. # Gives 10-18% speedup on bench.php # Does not change behaviour for non-windows | ||||
* | there is no realiable way to detect memrchr() presence because of a mess in ↵ | Antony Dovgal | 2006-08-08 | 1 | -11/+0 |
| | | | | | | | glibc so let's use our own implementation | ||||
* | - Added some docs here so that nobody needs to figure it out once more. | Derick Rethans | 2006-08-08 | 1 | -0/+9 |
| | |||||
* | add zend_memrchr() | Antony Dovgal | 2006-08-08 | 1 | -0/+23 |
| | |||||
* | - MFH as discussed | Marcus Boerger | 2006-05-09 | 1 | -9/+45 |
| | | | | | | | | | | | | | | | | | | | | | . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type) | ||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | - MFH add Z_OBJVAL*() macros | Marcus Boerger | 2005-12-20 | 1 | -0/+3 |
| | |||||
* | MFH: make GCC happy and suppress the warning | Antony Dovgal | 2005-11-17 | 1 | -0/+1 |
| | |||||
* | Allow zend_parse_parameters to handle non-well formed integers, but raise | Ilia Alshanetsky | 2005-11-17 | 1 | -10/+15 |
| | | | | | E_NOTICE in the process. | ||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | Fixed bug #30726 (-.1 like numbers are not being handled correctly). | Ilia Alshanetsky | 2005-01-18 | 1 | -1/+1 |
| | |||||
* | - Fixed bug #30630: Added a BSD based strtod function that is | Derick Rethans | 2004-11-03 | 1 | -1/+2 |
| | | | | | locale-independent. | ||||
* | MFH: Fixed a bug causing ".123" * "90" and alike to return a 0. | Ilia Alshanetsky | 2004-09-15 | 1 | -1/+1 |
| | |||||
* | - MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which | Derick Rethans | 2004-09-11 | 1 | -0/+3 |
| | | | | | makes them sort based on the current locale. (Derick) |