summaryrefslogtreecommitdiff
path: root/Zend/zend.c
Commit message (Collapse)AuthorAgeFilesLines
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-2/+2
|
* Another tweak to make 5.2 compile on gcc2Rasmus Lerdorf2009-06-161-1/+1
|
* MFH: Fixed module loading order and made request shutdown functions also toJani Taskinen2009-05-141-1/+1
| | | | | be loaded in reverse like all other shutdowns are.
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-2/+2
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-2/+2
|
* MFH: Fixed compiler warningsJani Taskinen2007-07-211-2/+2
|
* MFH: fix build on Tru64Antony Dovgal2007-04-261-1/+1
|
* fix #40815 (using strings like "class::func" and static methods in ↵Antony Dovgal2007-03-151-0/+3
| | | | set_exception_handler() might result in crash)
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-5/+3
|
* Fixed bug #39969 (ini setting short_open_tag has no effect when using ↵Dmitry Stogov2007-01-121-4/+22
| | | | --enable-maintainer-zts)
* Fixed bug #35634 (Erroneous "Class declarations may not be nested" error ↵Dmitry Stogov2007-01-111-1/+18
| | | | raised). (Carl P. Corliss)
* MFH: Bump year.Sebastian Bergmann2007-01-011-2/+2
|
* that was not intentionalAntony Dovgal2006-12-281-2/+2
| | | | | thanks Nuno
* MFHAntony Dovgal2006-12-281-11/+2
|
* is_numeric_string() optimizationIlia Alshanetsky2006-12-261-1/+1
| | | | | # Original Patch by Matt Wilmas
* MFH: use BSD licensed implementation of double-to-string utilities instead ↵Antony Dovgal2006-12-061-0/+2
| | | | | | | of LGPL one this patch also fixes thread safety issues in zend_strtod()
* Fixed bug #39344 (Unnecessary calls to OnModify callback routine for an ↵Dmitry Stogov2006-11-081-3/+4
| | | | extension INI directive). (wharmby at uk dot ibm dot com, Dmitry)
* - MFH: Fix issue with some mangeled propertiesMarcus Boerger2006-11-031-2/+2
|
* Fixed bug #39140 (Uncaught exception may cause crash)Dmitry Stogov2006-10-161-0/+2
|
* MFH(r-1.376): Preserve EG(return_value_ptr_ptr) when calling ↵Sara Golemon2006-10-061-0/+3
| | | | | | | zend_execute_scripts() Reapplying this since it looks like we'll be doing a PHP 5.2 RC6 after all
* Revert until 5.2's release since we're in RC stageSara Golemon2006-10-061-3/+0
|
* MFH(r-1.376): Preserve EG(return_value_ptr_ptr) when calling ↵Sara Golemon2006-10-051-0/+3
| | | | zend_execute_scripts()
* MFH: fix #38779 (engine crashes when require()'ing file with syntax error ↵Antony Dovgal2006-09-111-0/+1
| | | | through userspace stream wrapper)
* Use proper write callbackIlia Alshanetsky2006-08-191-1/+1
|
* - Better fix for #34505 and related, drop zend_unmangle_property_name_ex()Marcus Boerger2006-07-241-1/+1
|
* fetch tsrm_ls, don't use it uninitializedAntony Dovgal2006-07-191-1/+1
|
* New memory managerDmitry Stogov2006-07-181-17/+1
|
* MFH: initialize EG(exit_status) in ZTS modeAntony Dovgal2006-07-121-0/+1
|
* MFH: Added hook for compile_string()Stefan Esser2006-06-131-0/+1
|
* Make zend_print_zval_r_ex() use the write callback function.Ilia Alshanetsky2006-06-111-22/+31
|
* Restore ZE1 compatibility mode (Zend Engine part - the modules patchesZeev Suraski2006-06-051-0/+1
| | | | | will follow later today)
* SAPI globals are destroied at this point and reporting errors about memory ↵Dmitry Stogov2006-06-021-1/+1
| | | | leaks can cause crash.
* Optimized zend_try/zend_catch macroses (eliminated memcpy())Dmitry Stogov2006-05-191-2/+2
|
* Fixed bug #35512 (Lack of read permission on main script results inIlia Alshanetsky2006-05-171-1/+1
| | | | | E_WARNING rather then E_ERROR).
* - Missing __toString() piecesMarcus Boerger2006-05-121-17/+16
|
* no need to destroy the zval hereAntony Dovgal2006-05-111-1/+0
|
* - Missing __ToString() syncMarcus Boerger2006-05-101-9/+4
|
* - Missing __tostring() conversion snippetsMarcus Boerger2006-05-101-0/+3
|
* add missing parts of E_RECOVERABLE mergeAntony Dovgal2006-05-101-0/+1
|
* - MFH as discussedMarcus Boerger2006-05-091-9/+2
| | | | | | | | | | | | | | | | | | | | | . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type)
* fix compilation on AIXAntony Dovgal2006-03-301-1/+1
|
* fix #36878 (error messages are printed even though an exception has been thrown)Antony Dovgal2006-03-271-1/+1
|
* Optimization of module unloading (temporary modules can be only in the end)Dmitry Stogov2006-03-171-1/+1
|
* - MFH Use object handler get in the same way as the rest of the engine doesMarcus Boerger2006-03-021-1/+4
|
* - MFH Fix string-conversion and const updatingMarcus Boerger2006-03-011-1/+6
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-2/+2
|
* Fixed bug #34729 (Crash in ZTS mode under Apache)Dmitry Stogov2005-12-011-0/+11
|
* Fixed bug #35373 (HP-UX "alias not allowed in this configuration")Dmitry Stogov2005-11-301-1/+1
|
* Fixed bug #35147 (__HALT_COMPILER() breaks with --enable-zend-multibyte)Dmitry Stogov2005-11-151-0/+3
|
* Fixed bug #35009 (ZTS: Persistent resource destruct crashes when extension ↵Dmitry Stogov2005-11-071-1/+1
| | | | is compiled as shared)