Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 1 | -3/+3 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Updated API version numbers | Dmitry Stogov | 2007-09-29 | 1 | -1/+1 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | Optimized zend_try/zend_catch macroses (eliminated memcpy()) | Dmitry Stogov | 2006-05-19 | 1 | -1/+1 |
| | |||||
* | - MFH as discussed | Marcus Boerger | 2006-05-09 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | . 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 |
| | |||||
* | - MFH zend_is_callable_ex() returns zend_class_entry* if available | Marcus Boerger | 2005-10-25 | 1 | -1/+1 |
| | |||||
* | Fixed bug #31177 (menory leaks and corruption because of incorrect refcounting) | Dmitry Stogov | 2005-10-20 | 1 | -1/+1 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | Improved PHP extension loading mechanism with support for module ↵ | Dmitry Stogov | 2005-06-17 | 1 | -1/+1 |
| | | | | dependencies and conflicts. | ||||
* | Allowed return by refrence from internal functions | Dmitry Stogov | 2005-06-16 | 1 | -1/+1 |
| | |||||
* | Fix so that extensions like xdebug, can overload opcodes in all execution ↵ | Dmitry Stogov | 2005-06-10 | 1 | -1/+1 |
| | | | | modes including goto/switch | ||||
* | - Bump API version | Marcus Boerger | 2004-10-30 | 1 | -1/+1 |
| | |||||
* | - Revert API bump | Andi Gutmans | 2004-09-09 | 1 | -2/+2 |
| | |||||
* | - Recommit: | Andi Gutmans | 2004-09-09 | 1 | -2/+2 |
| | | | | | - Bump the API number to work around this major breakage. | ||||
* | - Roll back VM commit | Andi Gutmans | 2004-09-09 | 1 | -2/+2 |
| | |||||
* | - Bump the API number to work around this major breakage. | Derick Rethans | 2004-09-09 | 1 | -2/+2 |
| | |||||
* | - Bump API number due to empty_string change | Andi Gutmans | 2004-07-19 | 1 | -1/+1 |
| | |||||
* | - Add comment | Andi Gutmans | 2004-04-14 | 1 | -0/+3 |
| | |||||
* | - Fix API no of Engine 2. The first number is the engine version and the | Andi Gutmans | 2004-04-13 | 1 | -1/+1 |
| | | | | | | - rest is the API_NO. This way engine2_api_no is always greater than - engine1_api_no. | ||||
* | - modifyable -> modifiable | Andi Gutmans | 2004-04-12 | 1 | -1/+1 |
| | |||||
* | wrap ZEND_API prototypes into BEGIN_EXTERN_C/END_EXTERN_C | Hartmut Holzgraefe | 2004-02-18 | 1 | -3/+7 |
| | | | | | for C++ extension support | ||||
* | - 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? | ||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -1/+1 |
| | |||||
* | - Added some missing CVS $Id$ tags, headers and footers. | foobar | 2003-02-01 | 1 | -0/+9 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | Increased the API number. (re: floats patch) | Ilia Alshanetsky | 2002-10-13 | 1 | -1/+1 |
| | |||||
* | Propmote API NO year, so that it will never be the same as ZE1 API NO | Stanislav Malyshev | 2002-09-25 | 1 | -1/+1 |
| | |||||
* | - Someone screwed this up. | Andi Gutmans | 2002-09-21 | 1 | -1/+1 |
| | |||||
* | Support for __get, __set and __call in classes. | Stanislav Malyshev | 2002-09-04 | 1 | -1/+1 |
| | | | | | | | This should work as follows: if class hasn't member with given name, __get/__set is called. If class has no method with given name, __call is called. __get/__set are not recursive, __call can be. | ||||
* | Happy New Year. | Sebastian Bergmann | 2002-01-06 | 1 | -1/+1 |
| | |||||
* | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | |||||
* | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -1/+1 |
| | |||||
* | - Merge faster hash implementation. | Andi Gutmans | 2001-07-10 | 1 | -1/+1 |
| | | | | | | | | - The hash function parameter in hash_init(...) is not used anymore. - It should be removed but it is "to be decided" if we want to do that now - or in a major version as it means changing MANY places and third party - modules might stop working. | ||||
* | - Update copyright year | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | |||||
* | fix a couple of warnings | Thies C. Arntzen | 2001-01-23 | 1 | -2/+2 |
| | |||||
* | This needs updating as well | Zeev Suraski | 2000-12-24 | 1 | -1/+1 |
| | |||||
* | Update API number | Zeev Suraski | 2000-11-20 | 1 | -1/+1 |
| | |||||
* | - Remove unused function | Andi Gutmans | 2000-11-13 | 1 | -1/+0 |
| | |||||
* | - Use typedef's for function pointers so that we can easily define arrays | Andi Gutmans | 2000-11-13 | 1 | -13/+30 |
| | | | | | - of these function pointers. | ||||
* | Add ability to find extensions by name | Zeev Suraski | 2000-11-08 | 1 | -0/+1 |
| | |||||
* | Allow module to proclaim compatibility with any Zend version | Stanislav Malyshev | 2000-10-29 | 1 | -2/+3 |
| | |||||
* | - Change zend_extension_api_no | Andi Gutmans | 2000-10-02 | 1 | -1/+1 |
| | |||||
* | Fix previous update - move extension startup further down the startup sequence | Zeev Suraski | 2000-09-25 | 1 | -0/+1 |
| | |||||
* | Fix warning issue (compile errors inside require()'d files were incorrectly ↵ | Zeev Suraski | 2000-08-15 | 1 | -1/+1 |
| | | | | supressed) | ||||
* | Update API number | Zeev Suraski | 2000-08-09 | 1 | -1/+1 |
| | |||||
* | - Yet another fix... | Andi Gutmans | 2000-07-06 | 1 | -1/+1 |
| | |||||
* | Change header protection macros to conform to standard. | Sascha Schumann | 2000-07-02 | 1 | -3/+3 |
| | | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation. |