summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove handle_property from here tooStanislav Malyshev2003-01-121-3/+3
|
* Unify and make it easy to add code into the broken-string error handlerZeev Suraski2003-01-091-2/+2
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* - Commit Marcus' cleanup of abstract and static inheritance and improveAndi Gutmans2002-11-231-1/+1
| | | | | - error messages
* MFZE1Andrei Zmievski2002-09-161-0/+2
|
* only check for an available class entry instead ofHarald Radi2002-06-091-13/+1
| | | | | | | the std_object_handlers on some places #some linuxtag work
* MFZE1 (Expose more C++ APIs)Zeev Suraski2002-05-201-0/+4
|
* Make OBJCE return zend_class_entry*, also some cleanupsStanislav Malyshev2002-04-301-1/+1
|
* some type cleanup workHarald Radi2002-04-231-1/+1
|
* added get_class_entry callback handler to theHarald Radi2002-04-221-0/+2
| | | | | object handlers structure
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-1/+3
| | | | | | | Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly.
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
|
* - MFZE1 for exit fix, exposing current function name in error messages andDerick Rethans2002-01-031-0/+1
| | | | | exposing zend_zval_type_name().
* - Experimental support for destructors. We need to see if destructorsAndi Gutmans2001-12-271-0/+2
| | | | | | | - will actually work well in the context of PHP so we should consider this - as experimental. Possible problems might be that when the constructor is - run PHP might not be in a stable state.
* - Pretty much finish _clone() supportAndi Gutmans2001-12-261-0/+2
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - Add some initializationsAndi Gutmans2001-11-031-0/+2
|
* MFZE1: Introduced extension version numbers (Stig)Sebastian Bergmann2001-10-121-0/+1
|
* _FUNCTION is used in definition, so use _DStanislav Malyshev2001-08-121-4/+4
|
* - More work on making objects workAndi Gutmans2001-08-111-0/+2
|
* WhitespaceZeev Suraski2001-08-111-30/+30
|
* - Merge from Engine 1Andi Gutmans2001-08-101-11/+27
|
* - Merge from Engine 1 CVSAndi Gutmans2001-08-101-0/+1
|
* - Use Z_ macrosAndi Gutmans2001-08-061-1/+1
|
* TSRMLS_FETCH workZeev Suraski2001-08-051-4/+4
|
* More TSRMLS_FETCH workZeev Suraski2001-07-311-1/+1
|
* More TSRMLS_FETCH workZeev Suraski2001-07-301-5/+5
|
* More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRefZeev Suraski2001-07-301-4/+1
|
* Let's be consisten and keep TSRMLS_DC declaration after num_args.Andrei Zmievski2001-07-301-1/+1
|
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-301-2/+2
|
* Get rid of more TSRMLS_FETCH'sZeev Suraski2001-07-301-2/+7
|
* Avoid TSRMLS_FETCH()'s (still lots of work left)Zeev Suraski2001-07-301-8/+4
|
* Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-1/+1
| | | | | | This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it...
* Fix bug #10287 - avoid crashing under a bogus usage of list()Zeev Suraski2001-07-161-2/+4
|
* fixed ZVAL_FALSE and ZVAL_TRUEThies C. Arntzen2001-07-111-2/+2
|
* cleaned up the RETVAL_ RETURN_ and ZVAL_ macrosThies C. Arntzen2001-07-101-107/+39
| | | | | | | added check for \0 at end-of-string at some places. all strings in PHP have to be terminated with \0 because 3th party libraries might not be binary-safe.
* Adding new parameter parsing API.Andrei Zmievski2001-07-091-0/+11
|
* - Patch from Jason Greene.Andi Gutmans2001-04-191-2/+6
| | | | | | - Make it easier to write PHP function definitions in more than just one .c file while accessing the same module globals.
* Improve zend_is_callable() to the point where it's actually useful.Andrei Zmievski2001-03-121-1/+1
| | | | | | Now it just needs to be invoked everywhere in PHP where a callback is expected.
* - Rename modules.h to zend_modules.hAndi Gutmans2001-02-261-1/+1
|
* - Update copyright yearAndi Gutmans2001-02-261-1/+1
|
* Added zend_is_callable() function that checks whether passed zvalAndrei Zmievski2001-02-011-0/+1
| | | | | represents a valid and exiting callable construct.
* - Change unset() functions to null(). unset() is legacyAndi Gutmans2001-01-311-6/+12
|
* - Quick fix. I'm for changing these to add_property_null() as we've nukedAndi Gutmans2001-01-311-1/+1
| | | | | - unset.
* Make add_index_zval() available to the outside world.Andrei Zmievski2001-01-221-0/+1
|
* - Patch from Sterling. Add API calls to add zval's as array indeces/Andi Gutmans2001-01-201-18/+42
| | | | | | object properties. Add _ex functions which take the string length as an argument for better performance.
* - For Sterling. I wonder if not all of the API functions should take theAndi Gutmans2001-01-191-0/+1
| | | | | - key_length as a parameter in order to save that strlen().
* Fix call_user_function() with objects - it could leak under certain ↵Zeev Suraski2000-12-131-2/+2
| | | | circumstances
* Fix EMPTY_STRING macrosStanislav Malyshev2000-08-171-3/+3
|
* 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.