Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed bug #44226 (Throwing an exception causes crash in multithreaded SAPI) | Dmitry Stogov | 2008-04-17 | 1 | -17/+0 | |
| | ||||||
* | MFH: Added new macro for check void parameters. | Felipe Pena | 2008-03-10 | 1 | -2/+2 | |
| | | | | | (deprecating ZEND_WRONG_PARAM_COUNT for this cases) | |||||
* | Changed exception handling. Now each op_array doesn't contain ↵ | Dmitry Stogov | 2008-01-21 | 1 | -1/+19 | |
| | | | | ZEND_HANDLE_EXCEPTION opcode in the end | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 | |
| | ||||||
* | MFH: Added macros for managing zval refcounts and is_ref statuses | Yiduo (David) Wang | 2007-10-07 | 1 | -2/+2 | |
| | ||||||
* | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -2/+2 | |
| | ||||||
* | MFH | Antony Dovgal | 2007-05-30 | 1 | -2/+2 | |
| | ||||||
* | fix folding | Antony Dovgal | 2007-01-18 | 1 | -38/+41 | |
| | ||||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 | |
| | ||||||
* | is_numeric_string() optimization | Ilia Alshanetsky | 2006-12-26 | 1 | -1/+1 | |
| | | | | | # Original Patch by Matt Wilmas | |||||
* | Fixed wrong "type" argument to read_property() handler | Dmitry Stogov | 2006-07-21 | 1 | -1/+1 | |
| | ||||||
* | - MFH Fixed Bug #37667 (Object is not added into array returned by __get) | Marcus Boerger | 2006-07-10 | 1 | -1/+1 | |
| | ||||||
* | - MFH Arginfo fix (Hannes) | Marcus Boerger | 2006-06-13 | 1 | -2/+2 | |
| | ||||||
* | there is no %v in 5.2 | Antony Dovgal | 2006-05-18 | 1 | -1/+1 | |
| | ||||||
* | - MFH as discussed | Marcus Boerger | 2006-05-09 | 1 | -22/+22 | |
| | | | | | | | | | | | | | | | | | | | | | . 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) | |||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 | |
| | ||||||
* | improve error messages | Antony Dovgal | 2005-12-05 | 1 | -2/+2 | |
| | ||||||
* | MFH: fix #35539 (typo in error message for ErrorException) | Antony Dovgal | 2005-12-04 | 1 | -2/+2 | |
| | ||||||
* | - MFH Move reflection to its own extension | Marcus Boerger | 2005-11-30 | 1 | -1/+0 | |
| | | | | | # As discussed with RM | |||||
* | MFH: Add an additional field $frame['object'] to the result array of ↵ | Sebastian Bergmann | 2005-11-24 | 1 | -1/+1 | |
| | | | | debug_backtrace() that contains a reference to the respective object when the frame was called from an object. | |||||
* | Fixed memory leak | Dmitry Stogov | 2005-08-16 | 1 | -0/+1 | |
| | ||||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 | |
| | ||||||
* | - Fixed bug #33967 (misuse of Exception constructor doesn\'t display errorfile) | foobar | 2005-08-02 | 1 | -2/+2 | |
| | ||||||
* | fix various "Class entry requested for an object without PHP class" messages | Stanislav Malyshev | 2005-06-27 | 1 | -1/+11 | |
| | | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object | |||||
* | No c++ comments in C code | foobar | 2005-04-19 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #30904 (segfault when recording soapclient into session). | Dmitry Stogov | 2004-12-07 | 1 | -1/+2 | |
| | ||||||
* | - Fix protos | Marcus Boerger | 2004-10-30 | 1 | -1/+1 | |
| | ||||||
* | - Fix memeleak | Marcus Boerger | 2004-09-27 | 1 | -1/+4 | |
| | ||||||
* | - Roll back VM commit | Andi Gutmans | 2004-09-09 | 1 | -1/+1 | |
| | ||||||
* | - Some architectural changes: | Andi Gutmans | 2004-09-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | a) We specialize opcodes according to op_type fields. Each opcode has to be marked with which op_type's it uses. b) We support different execution methods. Function handlers, switch() and goto dispatching. goto seems to be the fastest but it really depends on the compiler and how well it optimizes. I suggest playing around with optimization flags. - Warning: Things might break so keep us posted on how things are going. (Dmitry, Andi) | |||||
* | - Be specific about visibility | Marcus Boerger | 2004-07-27 | 1 | -2/+2 | |
| | ||||||
* | - Add optional parameters $filename and $lineno to ErrorException | Marcus Boerger | 2004-07-25 | 1 | -6/+16 | |
| | | | | | | constructor to allow overwriting automatically retrieved information. # It may be reasonable to delete the trace in case that feature is used. | |||||
* | Fix prototypes | Zeev Suraski | 2004-07-20 | 1 | -2/+2 | |
| | ||||||
* | Add descriptions | Zeev Suraski | 2004-07-20 | 1 | -0/+43 | |
| | ||||||
* | - Add new class ErrorException to encapsulate errors in exceptions | Marcus Boerger | 2004-07-15 | 1 | -15/+93 | |
| | ||||||
* | Revert; obviously I missed the function at the bottom of the file... | Wez Furlong | 2004-05-20 | 1 | -1/+1 | |
| | ||||||
* | Export this, so extensions may throw their own exception objects that | Wez Furlong | 2004-05-20 | 1 | -1/+1 | |
| | | | | | they have already instantiated. | |||||
* | Classnames shall start with an uppercase character | Marcus Boerger | 2004-04-13 | 1 | -1/+1 | |
| | ||||||
* | - Add hook for exception handler (Derick) | Andi Gutmans | 2004-04-13 | 1 | -0/+5 | |
| | ||||||
* | - Fix crash in exception handling (zend_exception_error(...) and | Andi Gutmans | 2004-03-01 | 1 | -3/+1 | |
| | | | | | zend_eval_string_ex() were buggy (Dmitry, Andi) | |||||
* | Improve error messages | foobar | 2004-02-25 | 1 | -3/+3 | |
| | ||||||
* | - Fixed bug #27391 (typo in Fatal Error message). | Derick Rethans | 2004-02-25 | 1 | -1/+1 | |
| | ||||||
* | Centralize exceptions code in zend_exceptions.[ch]. | Zeev Suraski | 2004-02-12 | 1 | -11/+42 | |
| | | | | | | | | Remove zend_default_classes.h (use zend_exceptions.h instead) NOTE: This currently breaks the build, fixes to php-src and pecl coming soon | |||||
* | Exceptions updates: | Zeev Suraski | 2004-02-12 | 1 | -27/+22 | |
| | | | | | | | | - Enforce exceptions to be derived from class Exception. This allows users to perform catch-all. It's not yet complete, so don't get comfortable with it just yet :) Updates are coming soon. - Implement zend_throw_exception() using zend_throw_exception_ex() | |||||
* | Fix bug #27186 | Zeev Suraski | 2004-02-10 | 1 | -47/+61 | |
| | ||||||
* | Rewrote exception support. Fixes a few limitations and bugs in the old | Zeev Suraski | 2004-02-03 | 1 | -2/+2 | |
| | | | | | | | | | | | implementation, and allows exceptions to 'fire' much earlier than before. Instructions on how to use the new mechanism will follow on internals@ shortly... Note - this (most probably) breaks the current implementation of set_exception_handler() | |||||
* | Fix internal access to exception properties | Marcus Boerger | 2004-01-22 | 1 | -14/+14 | |
| | ||||||
* | - 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? | |||||
* | Do not show exception message if it's empty. | Andrei Zmievski | 2004-01-02 | 1 | -4/+10 | |
| | | | | | # Is there a way to preserve the case of the exception class here? | |||||
* | Make default message look better. | Andrei Zmievski | 2003-12-31 | 1 | -1/+1 | |
| |