summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Trivial fix - but the period looks odd in error messagesRasmus Lerdorf2001-07-031-1/+1
|
* Nuke unused variable.Andrei Zmievski2001-05-091-2/+0
|
* Fix a few bugs in zend_is_callable() and make it stricter.Andrei Zmievski2001-05-091-37/+44
|
* - More whitespace fixes while I'm at it.Andi Gutmans2001-04-271-1/+1
|
* Name length is already known.Andrei Zmievski2001-03-121-4/+3
|
* - Missed second place.Andi Gutmans2001-03-121-4/+12
|
* - Nuke snprintf()Andi Gutmans2001-03-121-2/+9
|
* Improve zend_is_callable() to the point where it's actually useful.Andrei Zmievski2001-03-121-11/+52
| | | | | | 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/+40
| | | | | represents a valid and exiting callable construct.
* - Change unset() functions to null(). unset() is legacyAndi Gutmans2001-01-311-4/+4
|
* fixed crash in add_index_bool.Thies C. Arntzen2001-01-231-1/+1
|
* - Patch from Sterling. Add API calls to add zval's as array indeces/Andi Gutmans2001-01-201-266/+188
| | | | | | 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/+5
| | | | | - key_length as a parameter in order to save that strlen().
* Maintain consistencyZeev Suraski2000-11-021-1/+1
|
* - Fix new -m on WindowsAndi Gutmans2000-10-261-1/+1
|
* Avoid using E_CORE_* errorlevels in any place which is not in the global ↵Zeev Suraski2000-06-121-7/+14
| | | | startup sequence
* Fix zend_get_parameters()Zeev Suraski2000-06-111-2/+1
|
* Fix bug #4768Zeev Suraski2000-06-101-13/+13
|
* - Andrei, this is for you!Andi Gutmans2000-06-091-0/+23
| | | | | | | - Add zend_register_internal_class_ex() which allows you to specify a - parent to inherit from. You can either specify the parent directly or via - its name.
* - Change register_internal_class to zend_register_internal_class forAndi Gutmans2000-06-091-1/+1
| | | | | | - consistency. - Andrei: I'm still thinking about the _ex you want me to implement
* Add newline at the end of the file (breaks at least SCO and Tru64 C compiler).Sascha Schumann2000-06-061-2/+2
|
* Fix a bug in static initializers/default values/class member variables that ↵Zeev Suraski2000-05-311-1/+1
| | | | | | | contained array values
* Allow disabling of functions for security reasonsZeev Suraski2000-05-291-0/+28
|
* Fix segfault occuring when a temporary module was unloaded and if thisSascha Schumann2000-05-021-1/+2
| | | | | module did not have a request shutdown function.
* Correct fixZeev Suraski2000-04-241-9/+8
|
* MODULE_TEMPORARY should get a call to RSHUTDOWN as well!Thies C. Arntzen2000-04-241-7/+9
|
* - Clean up resource lists namespaceZeev Suraski2000-04-151-22/+2
| | | | | - Prepare extended resource list destructor APIs (currently unused)
* - Stop zend_func_args() and co. from crashingAndi Gutmans2000-03-261-5/+5
|
* - Some header dependencies cleanupZeev Suraski2000-03-251-2/+0
| | | | | - Generalize zval_print() and zval_print_r()
* - Nuke hash_*_ptr functionsAndi Gutmans2000-03-241-1/+1
|
* It's official now...Zeev Suraski2000-03-061-3/+3
|
* (c) patchZeev Suraski2000-02-191-1/+1
|
* - Fix a nasty bug in the hash, introduced in the recent migration to macrosZeev Suraski2000-02-191-6/+6
| | | | | - Make array_init() and friends trackable
* Generalize macrosZeev Suraski2000-02-191-2/+2
|
* - Stop passing list/plist to internal functionsZeev Suraski2000-02-051-3/+7
| | | | | | - Add a typedef for the pCopyConstructor function pointer - Minor hacks
* *** empty log message ***Andrei Zmievski2000-02-031-1/+1
|
* - Fix built-in classes with more than 5 methodsZeev Suraski2000-02-021-3/+4
|
* Added add_property_unset() and add_property_bool().Andrei Zmievski2000-02-011-0/+21
|
* - Change IS_UNSET -> IS_NULLAndi Gutmans2000-01-041-3/+3
|
* - Nuke undefined_variable_stringZeev Suraski1999-12-311-0/+32
| | | | | - Introduce IS_UNSET
* - Get rid of warningAndi Gutmans1999-12-271-1/+1
|
* - Generalize the fast cache mechanismZeev Suraski1999-12-271-2/+4
| | | | | - Add the HashTable struct to the fast cache mechanism
* - Make zend_internal_function allocate a full zend_function structure soAndi Gutmans1999-12-271-7/+8
| | | | | that we don't get memory overruns and Thies doesn't get angry :)
* Change ALLOC_ZVAL() semanticsZeev Suraski1999-12-261-31/+60
|
* - Create two new macro's. ALLOC_ZVAL() and FREE_ZVAL(z) and make Zend useAndi Gutmans1999-12-241-31/+31
| | | | | them.
* We're using ZVAL's now.Andrei Zmievski1999-12-211-3/+3
|
* - Introduce ZEND_NUM_ARGS(), to replace ARG_COUNT(ht)Zeev Suraski1999-12-181-4/+4
| | | | | - Rename getParameters() and friends for consistency and namespace cleanliness
* Fix some warningsSascha Schumann1999-12-051-1/+0
|