Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed bug #34199 (if($obj)/if(!$obj) inconsistency) | Dmitry Stogov | 2005-09-12 | 1 | -1/+1 |
| | |||||
* | Fixed bug #33999 (object remains object when cast to int) | Dmitry Stogov | 2005-08-05 | 1 | -6/+5 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | Reverted wrong fix for bug #30572. | Dmitry Stogov | 2005-05-31 | 1 | -3/+3 |
| | | | | | | Seems the bug was already fixed in other way. But reverted patch produced a lot of valgrind errors, because IS_TMP_VAR operands don't initialize refcount. | ||||
* | - Fix memory corruption found by rob | Marcus Boerger | 2005-04-08 | 1 | -3/+5 |
| | |||||
* | - Added "G" modifier to ini setting number format. | Derick Rethans | 2004-12-13 | 1 | -4/+8 |
| | |||||
* | - MFH: Revert Joe's work around a bug in GCC patch as it breaks too many things. | Derick Rethans | 2004-11-29 | 1 | -9/+1 |
| | |||||
* | - Fixed bug #30630: Added a BSD based strtod function that is | Derick Rethans | 2004-11-03 | 1 | -10/+4 |
| | | | | | locale-independent. | ||||
* | - For Ilia: | Andi Gutmans | 2004-10-29 | 1 | -3/+3 |
| | | | | | | - MFH: Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean). - Hope this works well. I will MFH tomorrow if no one complains. | ||||
* | - Revert Fixed bug #30228 (crash when comparing SimpleXML attribute to a ↵ | Andi Gutmans | 2004-10-27 | 1 | -5/+1 |
| | | | | | | | boolean). - Need to discuss where the real problem is. | ||||
* | Fixed bug #30228 (crash when comparing SimpleXML attribute to a boolean). | Ilia Alshanetsky | 2004-10-26 | 1 | -1/+5 |
| | |||||
* | - If object handles are equal then save the comparison of properties in | Andi Gutmans | 2004-10-20 | 1 | -6/+6 |
| | | | | | - the == operator. | ||||
* | - Small improvement to DVAL_TO_ZVAL macro | Andi Gutmans | 2004-09-30 | 1 | -1/+1 |
| | |||||
* | - MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which | Derick Rethans | 2004-09-11 | 1 | -0/+29 |
| | | | | | makes them sort based on the current locale. (Derick) | ||||
* | - Resolve undefined behavior (joe at redhat) | Andi Gutmans | 2004-09-11 | 1 | -1/+9 |
| | |||||
* | - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE() | Andi Gutmans | 2004-07-19 | 1 | -13/+6 |
| | | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow. | ||||
* | - Fix comparison of objects | Zeev Suraski | 2004-05-10 | 1 | -20/+48 |
| | | | | | - Clarify convert_object_to_type() | ||||
* | - Fix comparison of two objects in non-compatibility mode. | Andi Gutmans | 2004-05-02 | 1 | -5/+2 |
| | |||||
* | - Nuke more old junk | Andi Gutmans | 2004-04-03 | 1 | -4/+0 |
| | |||||
* | - Nuke code which hasn't been in use for ages. | Andi Gutmans | 2004-04-03 | 1 | -28/+0 |
| | |||||
* | centralize object-to-scalar conversion, make it work with get handler | Stanislav Malyshev | 2004-03-28 | 1 | -58/+71 |
| | |||||
* | Use macros for object parts access | Stanislav Malyshev | 2004-03-28 | 1 | -10/+10 |
| | |||||
* | - Revert bogus commit | Derick Rethans | 2004-03-24 | 1 | -4/+6 |
| | |||||
* | - Fixed NEWS | Derick Rethans | 2004-03-24 | 1 | -6/+4 |
| | | | | | #- Can we *please* keep this in order? | ||||
* | - Apply Ard's patch to support multiplication & overflow on both 32bit | Andi Gutmans | 2004-03-17 | 1 | -10/+5 |
| | | | | | and 64bit machines | ||||
* | - Restore E_NOTICE for longs and doubles. | Andi Gutmans | 2004-03-15 | 1 | -0/+4 |
| | |||||
* | - Nuke E_NOTICE. This caused a notice when doing if ($obj == NULL) | Andi Gutmans | 2004-03-15 | 1 | -6/+0 |
| | |||||
* | - Improve compatibility mode and compare objects according to property | Andi Gutmans | 2004-03-14 | 1 | -0/+5 |
| | | | | | - comparison (sucky but this is how PHP 4 behaved). | ||||
* | - Support old style of converting objects to long/double/bool. | Andi Gutmans | 2004-03-14 | 1 | -19/+65 |
| | | | | | | | | | - This is only enabled in compatibility mode, else it calls cast_object() - and if that is not available we return 1 (true) so that the following - code would work: if ($obj) { } | ||||
* | Fix: Add return type void | Marcus Boerger | 2004-03-14 | 1 | -1/+1 |
| | |||||
* | - Support Cast operator in convert_to_* so that we support internal | Andi Gutmans | 2004-03-14 | 1 | -2/+6 |
| | | | | | - extensions such as SimpleXML. This is for Sterling. | ||||
* | - Fix memory leak in the following code (Dmitry): | Andi Gutmans | 2004-03-14 | 1 | -0/+6 |
| | | | | | | | | <?php $a = array(); $a .= "x"; ?> | ||||
* | - Initial commit which allows comparing overloaded objects with native | Andi Gutmans | 2004-03-14 | 1 | -13/+41 |
| | | | | | - types (only for internal classes and not for user-land classes). | ||||
* | - Fixed bug #27354 (Modulus operator crashes PHP). | Derick Rethans | 2004-02-22 | 1 | -0/+5 |
| | |||||
* | Remove conflict | Zeev Suraski | 2004-01-10 | 1 | -5/+0 |
| | |||||
* | Added error mask to set_error_handler() | Zeev Suraski | 2004-01-10 | 1 | -0/+5 |
| | | | | | Patch by Christian Schneider <cschneid@cschneid.com> | ||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | Fixes for POSIX compliancy. | Moriyoshi Koizumi | 2003-12-13 | 1 | -4/+4 |
| | |||||
* | - Brought ext/bcmath to the new millennium | foobar | 2003-12-09 | 1 | -3/+3 |
| | | | | | # consistency.. | ||||
* | - Revert the revert of these patches. This overloading can only be used | Andi Gutmans | 2003-12-02 | 1 | -2/+0 |
| | | | | | | - by C extensions such as SimpleXML and *NOT* PHP code. Reasons given - on the mailing list and problem with reentrancy inside the opcodes. | ||||
* | - Don't automatically call __toString() in convert_to_string_ex(). | Andi Gutmans | 2003-12-01 | 1 | -0/+2 |
| | | | | | | - use __toString() in your code. - Keep the auto-case in make_printable_zval. | ||||
* | Add new interface ArrayAccess to use objects as Arrays | Marcus Boerger | 2003-11-24 | 1 | -5/+12 |
| | |||||
* | Bugfix #26156 (REPLACE_ZVAL_VALUE works on uninit stack-based zvals) | Moriyoshi Koizumi | 2003-11-13 | 1 | -4/+1 |
| | |||||
* | Handle exceptions in casting more gracefully. | Marcus Boerger | 2003-11-08 | 1 | -4/+6 |
| | | | | | This fixes bug #26166 | ||||
* | Fixed bug #26148 (Print the notice before modifying variable on type | Ilia Alshanetsky | 2003-11-06 | 1 | -1/+1 |
| | | | | | | | | | | mismatch). # This only crashes in ZE1, however logic dictates that it may also crash # in ZE2 because variable does not have a correct type. Patch by: morten-bugs dot php dot net at afdelingp dot dk | ||||
* | Fallback to default behaviour for unsupported object type conversions | Marcus Boerger | 2003-09-18 | 1 | -14/+18 |
| | |||||
* | - Allow partial type conversion support for objects. | Marcus Boerger | 2003-09-18 | 1 | -5/+11 |
| | | | | | | - Add support for object to string conversion from userspace by method __toString() and add a test. | ||||
* | Simplify / fix | Zeev Suraski | 2003-09-15 | 1 | -1/+1 |
| | |||||
* | Commit 64-bit fixes to the standard operators | Zeev Suraski | 2003-09-14 | 1 | -13/+22 |
| | | | | | by Ard Biesheuvel (abies@php.net) | ||||
* | Fix warnings | Marcus Boerger | 2003-08-17 | 1 | -1/+1 |
| |