#
73c1be26 |
| 15-Jan-2015 |
Xinchen Hui |
Bump year
|
#
58efbf0a |
| 13-Jan-2015 |
Dmitry Stogov |
Fixed possible double free
|
#
d810cf81 |
| 13-Jan-2015 |
Dmitry Stogov |
Fixed possible crash
|
#
916d5ece |
| 12-Jan-2015 |
Dmitry Stogov |
Optimized error_reporting() similar to silence operator (ZEND_BEGIN_SILENCE opcode).
|
#
c5047d1f |
| 12-Jan-2015 |
Dmitry Stogov |
Use FAST_ZPP in few more frequently used functions
|
Revision tags: php-5.5.21RC1, php-5.6.5RC1 |
|
#
b7a7b1a6 |
| 03-Jan-2015 |
Stanislav Malyshev |
trailing whitespace removal
|
#
2d212b42 |
| 23-Dec-2014 |
Nikita Popov |
Drop duplicate arg from hash_get_current_key_ex
|
#
86af370b |
| 24-Dec-2014 |
Anatol Belski |
remove unused variable
|
#
385bda6c |
| 24-Dec-2014 |
Anatol Belski |
C89 compat
|
#
c42ac095 |
| 24-Dec-2014 |
Dmitry Stogov |
Added new API function 'zend_string* zend_string_tolower(zend_string*)'. It simplifies code and avoids unnecessary allocation and copying if string is already in lower case.
|
#
106b1017 |
| 23-Dec-2014 |
Dmitry Stogov |
API for fast construction of packed arrays
|
#
f3506dfa |
| 22-Dec-2014 |
Dmitry Stogov |
Improved get_object_vars()
|
#
2646f7bc |
| 22-Dec-2014 |
Dmitry Stogov |
Don't count variadic argument in zend_func.common.num_args. This allows faster CALL/RETURN code.
|
#
0833fd46 |
| 21-Dec-2014 |
Dmitry Stogov |
Allow arrays with define(), to match const syntax support
|
Revision tags: POST_NATIVE_TLS_MERGE, PRE_NATIVE_TLS_MERGE, php-5.5.20, php-5.4.36, php-5.6.4 |
|
#
bdeb220f |
| 13-Dec-2014 |
Anatol Belski |
first shot remove TSRMLS_* things
|
#
dcfe5877 |
| 28-Nov-2014 |
Dmitry Stogov |
Rename EX_VAR_2() into ZEND_CALL_VAR() and EX_VAR_NUM_2() into ZEND_CALL_VAR_NUM().
|
#
1da14c9f |
| 28-Nov-2014 |
Dmitry Stogov |
Pack EX(frame_info) into EX(This).u1.v.reserved. Rename "frame"kind" into "call_kind" and VM_FRAME_... into ZEND_CALL_...
|
#
11384ba7 |
| 28-Nov-2014 |
Dmitry Stogov |
Pack EX(num_args) into EX(This).u2.num_args
|
Revision tags: php-5.6.4RC1, php-5.5.20RC1, php-5.6.3, php-5.5.19, php-5.4.35 |
|
#
75041379 |
| 06-Nov-2014 |
Dmitry Stogov |
Improved object property access.
|
Revision tags: php-5.6.3RC1, php-5.5.19RC1 |
|
#
5190d8fb |
| 28-Oct-2014 |
Xinchen Hui |
Addtion fix for bug #68252 , forget static variable hanlding
|
#
e6fe3127 |
| 28-Oct-2014 |
Xinchen Hui |
Fixed bug #68252 (segfault in Zend/zend_hash.c in function _zend_hash_del_el) Don't leave a UNDEF gap in function_table
|
#
f7d3355e |
| 24-Oct-2014 |
Anatol Belski |
fix datatype mismatches and convert len args to size_t where the underlaying API uses zend_string
|
Revision tags: php-5.5.18, php-5.4.34 |
|
#
df79b9b2 |
| 09-Oct-2014 |
Nikita Popov |
Update get_class_name semantics * get_class_name is now only used for displaying the class name in debugging functions like var_dump, print_r, etc. It is no longer used in get
Update get_class_name semantics * get_class_name is now only used for displaying the class name in debugging functions like var_dump, print_r, etc. It is no longer used in get_class() etc. * As it is no longer used in get_parent_class() the parent argument is now gone. This also fixes incorrect parent classes being reported in COM. * get_class_name is now always required (previously some places made it optional and some required it) and is also required to return a non-NULL value. * Remove zend_get_object_classname. This also fixes a number of potential leaks due to incorrect usage of this function.
show more ...
|
#
e5e9d834 |
| 09-Oct-2014 |
Nikita Popov |
Remove zend_get_class_entry function
|
#
ee5b30fa |
| 09-Oct-2014 |
Nikita Popov |
Remove support for classes without class entries get_class_entry must be non-NULL and return non-NULL.
|