summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
Commit message (Collapse)AuthorAgeFilesLines
...
* MFH: Fugbix typo.Sebastian Bergmann2008-02-191-1/+1
|
* - MFH Windows build fixMarcus Boerger2008-02-091-1/+2
|
* - MFH SimplifyMarcus Boerger2008-02-071-3/+1
|
* - MFH Fix missing check and testsMarcus Boerger2008-02-061-1/+3
|
* - MFH Fix cross class tree reference issues with callbacks (colder,helly)Marcus Boerger2008-02-051-2/+5
|
* MFH: fix leak appearing when calling non-static protected or private methods ↵Antony Dovgal2008-02-021-2/+16
| | | | as static
* - MFH Add comment that explains why we need E_ERROR in those casesMarcus Boerger2008-02-021-0/+1
|
* - Fix remaining issue (should be last one)Marcus Boerger2008-02-021-0/+1
|
* - Drop useless TODO, this would need to be fixed in a generic wayMarcus Boerger2008-02-021-1/+0
|
* - Fix flag handling in message generationMarcus Boerger2008-02-021-4/+13
|
* What's the [0] for here? Looks wrong and causes stuff to segvRasmus Lerdorf2008-02-021-1/+1
|
* Small tweak. Need to make array and string callback syntax behave theRasmus Lerdorf2008-02-011-3/+3
| | | | | | same way. Also change "cannot" to "should not" since we obviously "can" make the call.
* [DOC]Marcus Boerger2008-02-011-40/+99
| | | | | | | | | | | | | | | | | | | | | | | | | | | - 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 GC bugDmitry Stogov2008-01-241-11/+11
|
* Changed EG(argument_stack) implementation.Dmitry Stogov2008-01-241-8/+8
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* Fixed bug #43651 (is_callable() with one or more nonconsecutive colons crashes)Dmitry Stogov2007-12-251-6/+5
|
* Fixed bug #43644 (is_callable(':') crashes)Ilia Alshanetsky2007-12-211-0/+4
|
* Fixed bug #43128 (Very long class name causes segfault)Dmitry Stogov2007-11-221-4/+3
|
* Fixed bug #43136 (possible crash on script execution timeout. The ↵Dmitry Stogov2007-11-201-3/+3
| | | | EG(function_state_ptr) is completely removed, EG(current_execute_data)->function_state must be used instead)
* - Fix confusing logic (sync with HEAD)Jani Taskinen2007-11-051-3/+9
|
* - MFH from HEAD:Jani Taskinen2007-11-021-336/+481
| | | | | | | | | | | | . 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.
* backport zero args checks from HEADAntony Dovgal2007-10-301-0/+25
| | | | | (fixes error message when passing parameters to a function accepting none)
* Backport +/* vararg specifiers from PHP6Sara Golemon2007-10-291-1/+66
|
* MFH: Added macros for managing zval refcounts and is_ref statusesYiduo (David) Wang2007-10-071-37/+37
|
* Nuke unused varsIlia Alshanetsky2007-09-301-2/+1
|
* Added support for __callstatic() magic method. (Sara)Dmitry Stogov2007-09-291-2/+29
|
* Added support for Late Static Binding. (Dmitry, Etienne Kneuss)Dmitry Stogov2007-09-291-2/+5
|
* NamespacesDmitry Stogov2007-09-281-19/+40
|
* Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)Dmitry Stogov2007-09-271-28/+28
|
* MFH: prohibit arguments by ref in magic methodsAntony Dovgal2007-08-311-10/+30
|
* Fixed bug #42119 (array_push($arr,&$obj) doesn't work with ↵Dmitry Stogov2007-08-011-1/+3
| | | | zend.ze1_compatibility_mode On)
* MFHAntony Dovgal2007-07-061-11/+11
|
* set module in internal_function structAntony Dovgal2007-05-301-0/+1
|
* - MFH Extensions are indexed lowercased and not case awareMarcus Boerger2007-05-161-1/+6
|
* - MFH Fix "f" modifier for zend_parse_parameters_ex in case of a __call callJohannes Schlüter2007-04-301-5/+12
| | | | | # only affects iterator_apply() in 5_2 branch
* WIN64 supportDmitry Stogov2007-04-161-7/+7
|
* fix #41026 (segfault when calling "self::method()" in shutdown functions)Antony Dovgal2007-04-091-2/+2
|
* - MFH zend_info_call_*() stuff, fixes coverity issue #328, noticed by tonyMarcus Boerger2007-04-051-12/+30
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* MFHAntony Dovgal2006-12-201-7/+6
|
* Speedup array/HashTable copying. (Matt W)Dmitry Stogov2006-10-031-2/+2
|
* - Fixed typo.Derick Rethans2006-07-251-1/+1
|
* MFH:- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be ↵foobar2006-07-221-0/+1
| | | | called Foo)
* Fixed wrong "type" argument to read_property() handlerDmitry Stogov2006-07-211-1/+1
|
* MFH: init variablesAntony Dovgal2006-06-201-2/+2
|
* MFH: Added automatic module globals management.Dmitry Stogov2006-06-151-0/+23
|
* - MFH zend_fcall_info_*() and parameter parsing option 'f'Marcus Boerger2006-06-071-0/+106
| | | | | | # Right now i see this as the best option but we might shuffle code around # later if someone comes up with a better solution.
* - MFH Fix issue with interfaces being inherited multiple timesMarcus Boerger2006-06-071-12/+2
|
* Restore ZE1 compatibility mode (Zend Engine part - the modules patchesZeev Suraski2006-06-051-0/+19
| | | | | will follow later today)