Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Update copyright year | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | - Remove two unused functions | Andi Gutmans | 2001-02-12 | 1 | -41/+0 |
| | |||||
* | Add notice when auto-converting array to string | Stanislav Malyshev | 2000-12-18 | 1 | -0/+2 |
| | |||||
* | Fix #8279 (-2147483647 > 2147483647). | Stanislav Malyshev | 2000-12-17 | 1 | -1/+1 |
| | | | | | # Long addition/subtraction may not fit long. | ||||
* | Fix #8195: strncasecmp returns incorrect value | Stanislav Malyshev | 2000-12-12 | 1 | -1/+1 |
| | |||||
* | Fix build | Zeev Suraski | 2000-11-21 | 1 | -3/+3 |
| | |||||
* | Initial steps to move the INI mechanism to the Zend engine | Zeev Suraski | 2000-10-29 | 1 | -0/+26 |
| | |||||
* | - Make increment of "" become "1" | Andi Gutmans | 2000-10-13 | 1 | -0/+7 |
| | |||||
* | - Commiting Sterling's new multi_convert* functions | Andi Gutmans | 2000-09-05 | 1 | -1/+45 |
| | |||||
* | Add strncasecmp function | Stanislav Malyshev | 2000-07-26 | 1 | -0/+25 |
| | | | | | @ Added strncasecmp function (Andi) | ||||
* | Move some stuff to zend_operators.h which is required by the | Sascha Schumann | 2000-06-14 | 1 | -10/+0 |
| | | | | | moved inline functions. | ||||
* | Add optional support for C0x inline semantics. | Sascha Schumann | 2000-06-13 | 1 | -59/+1 |
| | | | | | | | These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later. | ||||
* | - Fixed problem when using uninitialized values in comparisons with strings. | Andi Gutmans | 2000-06-10 | 1 | -0/+13 |
| | | | | | - They behave as empty strings again just like in PHP 3. | ||||
* | Add a couple of casts | Sascha Schumann | 2000-06-08 | 1 | -3/+3 |
| | |||||
* | - Support unordered hash comparisons | Zeev Suraski | 2000-06-04 | 1 | -12/+15 |
| | | | | | - Make == perform an unordered comparison with arrays/objects, and === perform an ordered comparison | ||||
* | Support comparisons of arrays (with arrays) and objects (with objects) | Zeev Suraski | 2000-06-03 | 1 | -5/+94 |
| | |||||
* | - Export normalize_bool | Zeev Suraski | 2000-06-03 | 1 | -11/+8 |
| | | | | | - This global/static syntax fix brought us back to the 4 documented conflicts | ||||
* | - Use pointer arithmetic to speed up the function a bit | Andi Gutmans | 2000-05-28 | 1 | -13/+16 |
| | |||||
* | - Fixed scanning decimal numbers in internationalized environments. They should | Andi Gutmans | 2000-05-26 | 1 | -0/+42 |
| | | | | | - always be in standard US format e.g. 23.3 | ||||
* | - Fix include() when used on resources (shouldn't work but shouldn't crash | Andi Gutmans | 2000-05-18 | 1 | -0/+6 |
| | | | | | either). | ||||
* | Update for sort functions - user can now specify sort type. | Andrei Zmievski | 2000-05-18 | 1 | -1/+1 |
| | |||||
* | - Add support for string_compare_function() and number_compare_function(). | Andi Gutmans | 2000-05-17 | 1 | -0/+46 |
| | | | | | UNTESTED! | ||||
* | Normalize results of compare_function() | Zeev Suraski | 2000-05-17 | 1 | -4/+12 |
| | |||||
* | Get rid of chval - it's really not necessary and seems to be confusing people | Zeev Suraski | 2000-05-11 | 1 | -1/+1 |
| | |||||
* | Make zend_binary_strcasecmp compile again | Zeev Suraski | 2000-05-08 | 1 | -0/+1 |
| | |||||
* | Make strcasecmp() act correctly WRT SUS II. | Sascha Schumann | 2000-05-08 | 1 | -7/+5 |
| | | | | | | Patch by: hholzgra@php.net PR: #3556 | ||||
* | Make convert_to_string() allocations traceable | Zeev Suraski | 2000-04-28 | 1 | -6/+6 |
| | |||||
* | Do proper ieeefp.h check. | Andrei Zmievski | 2000-04-20 | 1 | -0/+4 |
| | |||||
* | compile before commit! compile before commit! compile before commit! | Thies C. Arntzen | 2000-04-20 | 1 | -0/+1 |
| | |||||
* | revert andrei's path (i can't compile anymore on linux) | Thies C. Arntzen | 2000-04-20 | 1 | -4/+1 |
| | | | | | we're always using #ifndef HAVE_BLA instead of if !HAVE_BLA and if we need ieeefp.h for some weird platform (which one is that?) we need an autoconf check for it. | ||||
* | Include proper files for finite. | Andrei Zmievski | 2000-04-19 | 1 | -1/+3 |
| | |||||
* | ups, finite is already a macro on Win32 | Thies C. Arntzen | 2000-04-17 | 1 | -0/+2 |
| | |||||
* | HPUX11 only has isfinite() | Thies C. Arntzen | 2000-04-17 | 1 | -0/+3 |
| | |||||
* | Fix a memory leak when using assign-op bitwise operators on strings | Zeev Suraski | 2000-04-13 | 1 | -12/+30 |
| | |||||
* | Fix object overloading support | Zeev Suraski | 2000-04-10 | 1 | -2/+4 |
| | |||||
* | Added !== (is not identical) operator. | Torben Wilson | 2000-03-29 | 1 | -0/+12 |
| | |||||
* | - Wrong fix | Zeev Suraski | 2000-03-22 | 1 | -3/+3 |
| | |||||
* | - Only free when result != op1 | Zeev Suraski | 2000-03-22 | 1 | -3/+3 |
| | |||||
* | - Seems to be a problem here with the return value not being set | Andi Gutmans | 2000-03-10 | 1 | -0/+3 |
| | |||||
* | It's official now... | Zeev Suraski | 2000-03-06 | 1 | -3/+3 |
| | |||||
* | now | Thies C. Arntzen | 2000-03-01 | 1 | -2/+2 |
| | |||||
* | Fix comparisons of "inf"=="inf" and "-inf"=="-inf" | Zeev Suraski | 2000-02-26 | 1 | -0/+6 |
| | | | | | @- Comparing the string "inf" with "inf" returned false - fixed (Zeev) | ||||
* | (c) patch | Zeev Suraski | 2000-02-19 | 1 | -1/+1 |
| | |||||
* | Generalize macros | Zeev Suraski | 2000-02-19 | 1 | -1/+1 |
| | |||||
* | Make (array) false == array() and not array(false) | Zeev Suraski | 2000-02-13 | 1 | -0/+9 |
| | |||||
* | Fix declaration | Zeev Suraski | 2000-02-08 | 1 | -1/+1 |
| | |||||
* | Fix up the patch. | Andrei Zmievski | 2000-02-08 | 1 | -1/+1 |
| | |||||
* | Patches from Walter for strncmp() stuff. | Andrei Zmievski | 2000-02-08 | 1 | -1/+17 |
| | |||||
* | - Implement declare() with declarables framework | Zeev Suraski | 2000-01-24 | 1 | -12/+21 |
| | | | | | - Implement ticks - Germany&Norway - 5 points! | ||||
* | - Rename IS_BC to FLAG_IS_BC. We will probably nuke it. | Andi Gutmans | 2000-01-04 | 1 | -5/+5 |
| |