| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Added API to use namesapces in internal extensions | Dmitry Stogov | 2008-05-12 | 1 | -0/+14 | |
| | | ||||||
| * | - MFH: Fixed detection of invalid class name | Felipe Pena | 2008-05-08 | 1 | -1/+1 | |
| | | ||||||
| * | Support for old-style constructors in namespaces | Dmitry Stogov | 2008-05-05 | 1 | -1/+7 | |
| | | ||||||
| * | Optimized detection of "__call" and "__callstatic" methods. | Dmitry Stogov | 2008-03-25 | 1 | -17/+17 | |
| | | ||||||
| * | MFH: Dropped zend.ze1_compatibility_mode | Felipe Pena | 2008-03-18 | 1 | -28/+0 | |
| | | | | | | [DOC] | |||||
| * | fix segfault when trying to clone uncloneable object because of ↵ | Antony Dovgal | 2008-03-06 | 1 | -0/+6 | |
| | | | | | zend.ze1_compatibility_mode which we should have got rid of years ago | |||||
| * | MFH: Fugbix typo. | Sebastian Bergmann | 2008-02-19 | 1 | -1/+1 | |
| | | ||||||
| * | - MFH Windows build fix | Marcus Boerger | 2008-02-09 | 1 | -1/+2 | |
| | | ||||||
| * | - MFH Simplify | Marcus Boerger | 2008-02-07 | 1 | -3/+1 | |
| | | ||||||
| * | - MFH Fix missing check and tests | Marcus Boerger | 2008-02-06 | 1 | -1/+3 | |
| | | ||||||
| * | - MFH Fix cross class tree reference issues with callbacks (colder,helly) | Marcus Boerger | 2008-02-05 | 1 | -2/+5 | |
| | | ||||||
| * | MFH: fix leak appearing when calling non-static protected or private methods ↵ | Antony Dovgal | 2008-02-02 | 1 | -2/+16 | |
| | | | | | as static | |||||
| * | - MFH Add comment that explains why we need E_ERROR in those cases | Marcus Boerger | 2008-02-02 | 1 | -0/+1 | |
| | | ||||||
| * | - Fix remaining issue (should be last one) | Marcus Boerger | 2008-02-02 | 1 | -0/+1 | |
| | | ||||||
| * | - Drop useless TODO, this would need to be fixed in a generic way | Marcus Boerger | 2008-02-02 | 1 | -1/+0 | |
| | | ||||||
| * | - Fix flag handling in message generation | Marcus Boerger | 2008-02-02 | 1 | -4/+13 | |
| | | ||||||
| * | What's the [0] for here? Looks wrong and causes stuff to segv | Rasmus Lerdorf | 2008-02-02 | 1 | -1/+1 | |
| | | ||||||
| * | Small tweak. Need to make array and string callback syntax behave the | Rasmus Lerdorf | 2008-02-01 | 1 | -3/+3 | |
| | | | | | | | same way. Also change "cannot" to "should not" since we obviously "can" make the call. | |||||
| * | [DOC] | Marcus Boerger | 2008-02-01 | 1 | -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 bug | Dmitry Stogov | 2008-01-24 | 1 | -11/+11 | |
| | | ||||||
| * | Changed EG(argument_stack) implementation. | Dmitry Stogov | 2008-01-24 | 1 | -8/+8 | |
| | | ||||||
| * | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed bug #43651 (is_callable() with one or more nonconsecutive colons crashes) | Dmitry Stogov | 2007-12-25 | 1 | -6/+5 | |
| | | ||||||
| * | Fixed bug #43644 (is_callable(':') crashes) | Ilia Alshanetsky | 2007-12-21 | 1 | -0/+4 | |
| | | ||||||
| * | Fixed bug #43128 (Very long class name causes segfault) | Dmitry Stogov | 2007-11-22 | 1 | -4/+3 | |
| | | ||||||
| * | Fixed bug #43136 (possible crash on script execution timeout. The ↵ | Dmitry Stogov | 2007-11-20 | 1 | -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 Taskinen | 2007-11-05 | 1 | -3/+9 | |
| | | ||||||
| * | - MFH from HEAD: | Jani Taskinen | 2007-11-02 | 1 | -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 HEAD | Antony Dovgal | 2007-10-30 | 1 | -0/+25 | |
| | | | | | | (fixes error message when passing parameters to a function accepting none) | |||||
| * | Backport +/* vararg specifiers from PHP6 | Sara Golemon | 2007-10-29 | 1 | -1/+66 | |
| | | ||||||
| * | MFH: Added macros for managing zval refcounts and is_ref statuses | Yiduo (David) Wang | 2007-10-07 | 1 | -37/+37 | |
| | | ||||||
| * | Nuke unused vars | Ilia Alshanetsky | 2007-09-30 | 1 | -2/+1 | |
| | | ||||||
| * | Added support for __callstatic() magic method. (Sara) | Dmitry Stogov | 2007-09-29 | 1 | -2/+29 | |
| | | ||||||
| * | Added support for Late Static Binding. (Dmitry, Etienne Kneuss) | Dmitry Stogov | 2007-09-29 | 1 | -2/+5 | |
| | | ||||||
| * | Namespaces | Dmitry Stogov | 2007-09-28 | 1 | -19/+40 | |
| | | ||||||
| * | Improved memory usage by movig constants to read only memory. (Dmitry, Pierre) | Dmitry Stogov | 2007-09-27 | 1 | -28/+28 | |
| | | ||||||
| * | MFH: prohibit arguments by ref in magic methods | Antony Dovgal | 2007-08-31 | 1 | -10/+30 | |
| | | ||||||
| * | Fixed bug #42119 (array_push($arr,&$obj) doesn't work with ↵ | Dmitry Stogov | 2007-08-01 | 1 | -1/+3 | |
| | | | | | zend.ze1_compatibility_mode On) | |||||
| * | MFH | Antony Dovgal | 2007-07-06 | 1 | -11/+11 | |
| | | ||||||
| * | set module in internal_function struct | Antony Dovgal | 2007-05-30 | 1 | -0/+1 | |
| | | ||||||
| * | - MFH Extensions are indexed lowercased and not case aware | Marcus Boerger | 2007-05-16 | 1 | -1/+6 | |
| | | ||||||
| * | - MFH Fix "f" modifier for zend_parse_parameters_ex in case of a __call call | Johannes Schlüter | 2007-04-30 | 1 | -5/+12 | |
| | | | | | | # only affects iterator_apply() in 5_2 branch | |||||
| * | WIN64 support | Dmitry Stogov | 2007-04-16 | 1 | -7/+7 | |
| | | ||||||
| * | fix #41026 (segfault when calling "self::method()" in shutdown functions) | Antony Dovgal | 2007-04-09 | 1 | -2/+2 | |
| | | ||||||
| * | - MFH zend_info_call_*() stuff, fixes coverity issue #328, noticed by tony | Marcus Boerger | 2007-04-05 | 1 | -12/+30 | |
| | | ||||||
| * | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 | |
| | | ||||||
| * | MFH | Antony Dovgal | 2006-12-20 | 1 | -7/+6 | |
| | | ||||||
| * | Speedup array/HashTable copying. (Matt W) | Dmitry Stogov | 2006-10-03 | 1 | -2/+2 | |
| | | ||||||
| * | - Fixed typo. | Derick Rethans | 2006-07-25 | 1 | -1/+1 | |
| | | ||||||
| * | MFH:- Fixed bug #38183 (disable_classes=Foobar causes disabled class to be ↵ | foobar | 2006-07-22 | 1 | -0/+1 | |
| | | | | | called Foo) | |||||
