summaryrefslogtreecommitdiff
path: root/Zend/zend_extensions.h
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-3/+3
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Updated API version numbersDmitry Stogov2007-09-291-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Optimized zend_try/zend_catch macroses (eliminated memcpy())Dmitry Stogov2006-05-191-1/+1
|
* - MFH as discussedMarcus Boerger2006-05-091-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 2006Andi Gutmans2006-01-041-1/+1
|
* - MFH zend_is_callable_ex() returns zend_class_entry* if availableMarcus Boerger2005-10-251-1/+1
|
* Fixed bug #31177 (menory leaks and corruption because of incorrect refcounting)Dmitry Stogov2005-10-201-1/+1
|
* Bump up the yearfoobar2005-08-031-1/+1
|
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-1/+1
| | | | dependencies and conflicts.
* Allowed return by refrence from internal functionsDmitry Stogov2005-06-161-1/+1
|
* Fix so that extensions like xdebug, can overload opcodes in all execution ↵Dmitry Stogov2005-06-101-1/+1
| | | | modes including goto/switch
* - Bump API versionMarcus Boerger2004-10-301-1/+1
|
* - Revert API bumpAndi Gutmans2004-09-091-2/+2
|
* - Recommit:Andi Gutmans2004-09-091-2/+2
| | | | | - Bump the API number to work around this major breakage.
* - Roll back VM commitAndi Gutmans2004-09-091-2/+2
|
* - Bump the API number to work around this major breakage.Derick Rethans2004-09-091-2/+2
|
* - Bump API number due to empty_string changeAndi Gutmans2004-07-191-1/+1
|
* - Add commentAndi Gutmans2004-04-141-0/+3
|
* - Fix API no of Engine 2. The first number is the engine version and theAndi Gutmans2004-04-131-1/+1
| | | | | | - rest is the API_NO. This way engine2_api_no is always greater than - engine1_api_no.
* - modifyable -> modifiableAndi Gutmans2004-04-121-1/+1
|
* wrap ZEND_API prototypes into BEGIN_EXTERN_C/END_EXTERN_CHartmut Holzgraefe2004-02-181-3/+7
| | | | | for C++ extension support
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* updating license information in the headers.James Cox2003-06-101-1/+1
|
* - Added some missing CVS $Id$ tags, headers and footers.foobar2003-02-011-0/+9
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* Increased the API number. (re: floats patch)Ilia Alshanetsky2002-10-131-1/+1
|
* Propmote API NO year, so that it will never be the same as ZE1 API NOStanislav Malyshev2002-09-251-1/+1
|
* - Someone screwed this up.Andi Gutmans2002-09-211-1/+1
|
* Support for __get, __set and __call in classes.Stanislav Malyshev2002-09-041-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 Bergmann2002-01-061-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-1/+1
|
* - Merge faster hash implementation.Andi Gutmans2001-07-101-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 yearAndi Gutmans2001-02-261-1/+1
|
* fix a couple of warningsThies C. Arntzen2001-01-231-2/+2
|
* This needs updating as wellZeev Suraski2000-12-241-1/+1
|
* Update API numberZeev Suraski2000-11-201-1/+1
|
* - Remove unused functionAndi Gutmans2000-11-131-1/+0
|
* - Use typedef's for function pointers so that we can easily define arraysAndi Gutmans2000-11-131-13/+30
| | | | | - of these function pointers.
* Add ability to find extensions by nameZeev Suraski2000-11-081-0/+1
|
* Allow module to proclaim compatibility with any Zend versionStanislav Malyshev2000-10-291-2/+3
|
* - Change zend_extension_api_noAndi Gutmans2000-10-021-1/+1
|
* Fix previous update - move extension startup further down the startup sequenceZeev Suraski2000-09-251-0/+1
|
* Fix warning issue (compile errors inside require()'d files were incorrectly ↵Zeev Suraski2000-08-151-1/+1
| | | | supressed)
* Update API numberZeev Suraski2000-08-091-1/+1
|
* - Yet another fix...Andi Gutmans2000-07-061-1/+1
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-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.