summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
Commit message (Collapse)AuthorAgeFilesLines
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* Fixed bug #46409 (__invoke method called outside of object context when ↵Dmitry Stogov2008-11-271-3/+3
| | | | using array_map)
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-11-171-1/+1
|
* - Next step in namespaces, using / as namespace separator.Marcus Boerger2008-11-041-1/+1
|
* - Revert ZEND_BEGIN_ARG_INFO changeFelipe Pena2008-11-021-1/+1
|
* - MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macroFelipe Pena2008-10-241-1/+1
|
* mark empty_fcall_info and empty_fcall_info_cache as constant. a few less ↵Nuno Lopes2008-08-121-2/+2
| | | | bytes in the dirty page :P
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-27/+27
|
* - MFH: Added parameter TSRMLS_DC in zend_is_callable()Felipe Pena2008-08-021-1/+1
|
* Fixed is_callable/call_user_func mess that had done different things for ↵Dmitry Stogov2008-07-261-1/+2
| | | | very similar arguments e.g. array("A","B") and "A::B"
* LSB parent/self forwardingDmitry Stogov2008-07-241-22/+21
|
* deprecate zend_get_parameters_exStanislav Malyshev2008-06-271-1/+1
|
* MFH: Add array_init_size() and use it where array size is known at ↵Matt Wilmas2008-05-271-2/+3
| | | | initialization
* Added API to use namesapces in internal extensionsDmitry Stogov2008-05-121-0/+27
|
* Lazy EG(active_symbol_table) initializationDmitry Stogov2008-04-291-0/+2
|
* MFH: Added new macro for check void parameters.Felipe Pena2008-03-101-1/+2
| | | | | (deprecating ZEND_WRONG_PARAM_COUNT for this cases)
* [DOC]Marcus Boerger2008-02-011-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Fix callable/static mess, the following will now all result in a E_STRICT . binding a dynamic function as a static callback . static call of a dynamic function . is_callable() on a static binding to a dynamic function # [marcus@frodo PHP_5_3]$ php -a -d error_reporting=8191 # make: `sapi/cli/php' is up to date. # Interactive shell # # php > class t{ function f() { echo "Funny\n"; } } # php > $c = array("t","f"); # php > call_user_func($c); # # Strict Standards: call_user_func() expects parameter 1 to be a valid callback, non-static method t::f() cannot be called statically in php shell code on line 1 # Funny # php > var_dump(is_callable($c)); # # Strict Standards: Non-static method t::f() cannot be called statically in php shell code on line 1 # bool(true) # php > t::f(); # # Strict Standards: Non-static method t::f() should not be called statically in php shell code on line 1 # Funny # php >
* Fixed comilation warningsDmitry Stogov2008-01-241-16/+15
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* - MFH from HEAD:Jani Taskinen2007-11-021-49/+88
| | | | | | | | | | | | . Folding tags . Parameter parsing . SPL debug info . array function improvements (not all yet) . Improvements to function calling with call_user_* functions . Improvements to debugging info in var_dump/print_r # I propably forgot already something but this all was pretty close tied # to each other so it wasn't possible to do it in parts.
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-9/+9
|
* Added support for __callstatic() magic method (missing part). (Sara)Dmitry Stogov2007-09-291-0/+1
|
* Added support for __callstatic() magic method. (Sara)Dmitry Stogov2007-09-291-0/+1
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-27/+27
|
* WIN64 supportDmitry Stogov2007-04-161-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - Fixed incorrect function names on FreeBSD where inet_pton() was namedHannes Magnusson2006-12-201-0/+3
| | | | | | | __inet_pton() and inet_ntop() was named __inet_ntop() - Fixed bug #39685 (iconv() - undefined function) - Fixed bug #38852 (XML-RPC Breaks iconv)
* New memory managerDmitry Stogov2006-07-181-1/+0
|
* MFH: Added automatic module globals management.Dmitry Stogov2006-06-151-0/+8
|
* - MFH zend_fcall_info_*() and parameter parsing option 'f'Marcus Boerger2006-06-071-0/+20
| | | | | | # Right now i see this as the best option but we might shuffle code around # later if someone comes up with a better solution.
* fix error messages when converting objects to other typesAntony Dovgal2006-05-251-0/+1
| | | | | | add new function MFB will follow soon
* - MFH as discussedMarcus Boerger2006-05-091-38/+43
| | | | | | | | | | | | | | | | | | | | | . 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)
* - Add missing function for completenessMarcus Boerger2006-03-051-0/+1
|
* - MFH: Function deprecation flagMarcus Boerger2006-02-251-0/+2
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* - Simplify and synch is_callable_ex() with actual execution codeMarcus Boerger2005-12-161-0/+2
| | | | | | . Allow array($this, 'parent::method') for function 'pointers' . Spit out E_STRICT in case of erroneous use of function 'pointers'
* Fixed bug #34729 (Crash in ZTS mode under Apache)Dmitry Stogov2005-12-011-0/+6
|
* Fixed bug #34879 (str_replace, array_map corrupt negative array indexes on ↵Dmitry Stogov2005-10-281-12/+12
| | | | 64-bit platforms)
* - MFH zend_is_callable_ex() returns zend_class_entry* if availableMarcus Boerger2005-10-251-1/+1
|
* Support for class constants and static members for internal classesDmitry Stogov2005-09-011-0/+17
|
* Bump up the yearfoobar2005-08-031-1/+1
|
* - Add convenience function zend_is_callable_ex() and base zend_is_callableMarcus Boerger2005-07-281-0/+2
| | | | | | | | and zend_make_callable on it. This functions allows to check if a php variable is a callable function and returns its function pointer as well as object if possible. # Commit this now so we can use it in 5.1.* series as discussed with Andi.
* Fixed bug in new module statrup mechanismDmitry Stogov2005-07-181-2/+2
|
* Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵Dmitry Stogov2005-07-071-1/+6
| | | | complement the property get/set methods)
* Fixed bug #31158 (array_splice on $GLOBALS crashes)Dmitry Stogov2005-07-041-0/+2
|
* Restored old behavior of zend_statup_module()Dmitry Stogov2005-06-301-2/+2
|
* fix various "Class entry requested for an object without PHP class" messagesStanislav Malyshev2005-06-271-0/+1
| | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object
* Improved PHP extension loading mechanism with support for module ↵Dmitry Stogov2005-06-171-2/+3
| | | | dependencies and conflicts.
* Allowed return by refrence from internal functionsDmitry Stogov2005-06-161-1/+1
|
* Added array type hinting. (This patch requires full re-make)Dmitry Stogov2005-05-261-4/+5
|