History log of /PHP-5.4/Zend/zend_object_handlers.c (Results 26 – 50 of 234)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 0203cc3d 01-Jan-2011 Felipe Pena

- Year++


Revision tags: php-5.2.16, php-5.2.15, php-5.3.4, php-5.2.15RC2, php-5.3.4RC2, php-5.3.4RC1, php-5.2.15RC1, PHP_5_2_15RC1
# e3ced0b5 03-Nov-2010 Felipe Pena

- Reverted fix for bug #51176


# 815d0e54 03-Nov-2010 Felipe Pena

- Reverted fix for bug #51176


# 4d8503a2 01-Oct-2010 Dmitry Stogov

Fixed bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early). (mail_ben_schmidt at yahoo dot com dot au, Dmitry)


# f64e4bac 01-Oct-2010 Dmitry Stogov

Fixed bug #52879 (Objects unreferenced in __get, __set, __isset or __unset can be freed too early). (mail_ben_schmidt at yahoo dot com dot au, Dmitry)


# f2df6a4a 15-Sep-2010 Dmitry Stogov

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replace

- Improved memory usage
. zend_function.pass_rest_by_reference is replaced by
ZEND_ACC_PASS_REST_BY_REFERENCE in zend_function.fn_flags
. zend_function.return_reference is replaced by ZEND_ACC_RETURN_REFERENCE
in zend_function.fn_flags
. zend_arg_info.required_num_args removed. it was needed only for internal
functions. Now the first arg_info for internal function (which has special
meaning) is represented by zend_internal_function_info structure.
. zend_op_array.size, size_var, size_literal, current_brk_cont,
backpatch_count moved into CG(context), because they are used only during
compilation.
. zend_op_array.start_op is moved into EG(start_op), because it's used
only for 'interactive' execution of single top-level op-array.
. zend_op_array.done_pass_two is replaced by ZEND_ACC_DONE_PASS_TWO in
zend_op_array.fn_flags.
. op_array.vars array is trimmed (reallocated) during pass_two.
. zend_class_entry.constants_updated is replaced by
ZEND_ACC_CONSTANTS_UPDATED in zend_class_entry.ce_flags
. the size of zend_class_entry is reduced by sharing the same memory space
by different information for internal and user classes.
See zend_class_inttry.info union.

show more ...


Revision tags: oci8-1.4.3
# c0e6f37c 01-Aug-2010 Felipe Pena

- Fixed bug #52484 (__set() ignores setting properties with empty names)


# e914d906 01-Aug-2010 Felipe Pena

- Fixed bug #52484 (__set() ignores setting properties with empty names)


Revision tags: php-5.2.14, php-5.3.3, php-5.3.3RC3, php-5.2.14RC3, php-5.3.3RC2, php-5.2.14RC2, php-5.3.3RC1, php-5.2.14RC1
# f1e02c5c 12-Jun-2010 Felipe Pena

- Fixed bug #52051 (handling of case sensitivity of old-style constructors changed in 5.3+)


# 2c2fcc22 12-Jun-2010 Felipe Pena

- Fixed bug #52051 (handling of case sensitivity of old-style constructors changed in 5.3+)


# c5237d82 24-May-2010 Dmitry Stogov

Added caches to eliminate repeatable run-time bindings of functions, classes, constants, methods and properties


# 277f271a 06-May-2010 Dmitry Stogov

Added compiler hints


# 94dd8372 20-Apr-2010 Dmitry Stogov

Changed the structure of op_array.opcodes. The constant values are moved from opcode operands into a separate literal table


Revision tags: php-5.3.2
# 79f61883 02-Mar-2010 Felipe Pena

- Fixed bug #51176 (Static calling in non-static method behaves like $this->)


Revision tags: php-5.2.13, php-5.3.2RC3, php-5.3.2RC2, php-5.2.13RC2, php-5.2.13RC1
# d2281d1d 05-Jan-2010 Sebastian Bergmann

sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php


Revision tags: php-5.3.2RC1, php-5.2.12, php-5.2.12RC4, php-5.2.12RC3, php-5.2.12RC2, php-5.3.1, php-5.3.1RC4, php-5.2.12RC1, php-5.3.1RC3, php-5.3.1RC2, oci8-1.4.0, php-5.2.11, php-5.2.11RC3, php-5.3.1RC1, php-5.2.11RC2, php-5.2.11RC1, php-5.3.0
# d976be4b 19-Jun-2009 Scott MacVicar

Make the check case sensitive, and since we can only have a constructor that matches the class name or is __construct
its probably safe to just check for __. This means we can skip lowering the f

Make the check case sensitive, and since we can only have a constructor that matches the class name or is __construct
its probably safe to just check for __. This means we can skip lowering the function_name, which is hard to be binary
safe sine we don't store the length.

If we just did a zend_hash_exists lookup we'd be fine since its stored lowercased already :)

show more ...


Revision tags: php-5.3.0RC4
# 8e3aebd5 18-Jun-2009 Scott MacVicar

Fix bug #48215 - Calling a method with the same name as the parent class calls the constructor instead.


Revision tags: php-5.2.10
# 2cb9fe1f 12-Jun-2009 Felipe Pena

- Constified method_name arg. in zend_get_user_call_function() and zend_get_user_callstatic_function()


# 5f8ca6da 12-Jun-2009 Felipe Pena

MFH: Fixed bug #48533 (__callStatic is not invoked for private/protected methods)


Revision tags: php-5.2.10RC2, php-5.3.0RC3, php-5.2.10RC1
# db1eafa8 12-May-2009 Felipe Pena

- MFH: Fixed bug #48248 (SIGSEGV when access to private property via &__get)


Revision tags: php-5.3.0RC2, php-5.3.0RC1, RELEASE_1_3_5, php-5.2.9, php-5.2.9RC3, php-5.2.9RC2, php-5.2.9RC1, php-5.3.0beta1
# 312176f0 14-Jan-2009 Dmitry Stogov

Reverted "Rebind closure when binding to property"


# 26bb96e2 07-Jan-2009 Andrei Zmievski

Changed __call() to be invoked on private/protected method access,
similar to properties and __get().


# 0e131653 03-Jan-2009 Marcus Boerger

- MFH Rebind closure when binding to property


# 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
# 7d4fd3fd 27-Nov-2008 Dmitry Stogov

Fixed bug #46409 (__invoke method called outside of object context when using array_map)


12345678910