History log of /PHP-5.5/Zend/zend_operators.c (Results 101 – 125 of 302)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.3.10RC1
# e612284e 03-Nov-2004 Derick Rethans

- Fixed bug #30630: Added a BSD based strtod function that is
locale-independent.


# b86cdbbd 29-Oct-2004 Andi Gutmans

- For Ilia:
- MFH: Fixed bug #30572 (crash when comparing SimpleXML attribute to a boolean).
- Hope this works well. I will MFH tomorrow if no one complains.


# a4dff681 27-Oct-2004 Andi Gutmans

- Revert Fixed bug #30228 (crash when comparing SimpleXML attribute to a boolean).
- Need to discuss where the real problem is.


# bb928e70 26-Oct-2004 Ilia Alshanetsky

Fixed bug #30228 (crash when comparing SimpleXML attribute to a boolean).


Revision tags: PRE_NEW_VM_GEN_PATCH
# abd42847 20-Oct-2004 Andi Gutmans

- If object handles are equal then save the comparison of properties in
- the == operator.


# 1a4bfd65 30-Sep-2004 Andi Gutmans

- Small improvement to DVAL_TO_ZVAL macro


Revision tags: php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3
# 4bae5cb4 11-Sep-2004 Derick Rethans

- MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which
makes them sort based on the current locale. (Derick)


# 3e201ac2 11-Sep-2004 Andi Gutmans

- Resolve undefined behavior (joe at redhat)


Revision tags: PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1, php-5.0.1RC1, RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
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.

show more ...


Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1, RELEASE_0_1_1
# 428e722d 10-May-2004 Zeev Suraski

- Fix comparison of objects
- Clarify convert_object_to_type()


# 33170709 02-May-2004 Andi Gutmans

- Fix comparison of two objects in non-compatibility mode.


Revision tags: php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2
# 91192243 03-Apr-2004 Andi Gutmans

- Nuke more old junk


# 1c7cfe73 03-Apr-2004 Andi Gutmans

- Nuke code which hasn't been in use for ages.


Revision tags: php-4.3.6RC1
# 9091bf8e 28-Mar-2004 Stanislav Malyshev

centralize object-to-scalar conversion, make it work with get handler


# c331afa2 28-Mar-2004 Stanislav Malyshev

Use macros for object parts access


Revision tags: php-4.3.5
# 9ff10d08 24-Mar-2004 Derick Rethans

- Revert bogus commit


# 2face60b 24-Mar-2004 Derick Rethans

- Fixed NEWS
#- Can we *please* keep this in order?


Revision tags: php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2
# 29ee03aa 17-Mar-2004 Andi Gutmans

- Apply Ard's patch to support multiplication & overflow on both 32bit
and 64bit machines


# dae7093d 15-Mar-2004 Andi Gutmans

- Restore E_NOTICE for longs and doubles.


# 14d711b9 15-Mar-2004 Andi Gutmans

- Nuke E_NOTICE. This caused a notice when doing if ($obj == NULL)


Revision tags: php-5.0.0RC1RC1
# f11c819d 14-Mar-2004 Andi Gutmans

- Improve compatibility mode and compare objects according to property
- comparison (sucky but this is how PHP 4 behaved).


# 515e28ed 14-Mar-2004 Andi Gutmans

- Support old style of converting objects to long/double/bool.
- This is only enabled in compatibility mode, else it calls cast_object()
- and if that is not available we return 1 (true) so t

- Support old style of converting objects to long/double/bool.
- 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) {
}

show more ...


# 2917102e 14-Mar-2004 Marcus Boerger

Fix: Add return type void


# 88de69b9 14-Mar-2004 Andi Gutmans

- Support Cast operator in convert_to_* so that we support internal
- extensions such as SimpleXML. This is for Sterling.


# 4f897b2f 14-Mar-2004 Andi Gutmans

- Fix memory leak in the following code (Dmitry):
<?php
$a = array();
$a .= "x";
?>


12345678910>>...13