Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Optimization of module unloading (temporary modules can be only in the end) | Dmitry Stogov | 2006-03-17 | 1 | -5/+1 | |
| | ||||||
* | - Add missing function for completeness | Marcus Boerger | 2006-03-05 | 1 | -0/+14 | |
| | ||||||
* | - MFH Fix string-conversion and const updating | Marcus Boerger | 2006-03-01 | 1 | -0/+1 | |
| | ||||||
* | - MFH Argument parsing specifier 'C', which is necessary for SPL already | Marcus Boerger | 2006-02-27 | 1 | -3/+38 | |
| | ||||||
* | - MFH: Function deprecation flag | Marcus Boerger | 2006-02-25 | 1 | -1/+3 | |
| | ||||||
* | - Fix method flag handling | Marcus Boerger | 2006-02-19 | 1 | -1/+1 | |
| | ||||||
* | init variables | Antony Dovgal | 2006-02-06 | 1 | -2/+2 | |
| | ||||||
* | - MFH | Marcus Boerger | 2006-01-25 | 1 | -0/+16 | |
| | ||||||
* | - Fixed bug #36011 | Marcus Boerger | 2006-01-14 | 1 | -13/+12 | |
| | ||||||
* | fix typo in the code and related tests | Antony Dovgal | 2006-01-06 | 1 | -1/+1 | |
| | ||||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 | |
| | ||||||
* | - Simplify and synch is_callable_ex() with actual execution code | Marcus Boerger | 2005-12-16 | 1 | -58/+90 | |
| | | | | | | . 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 Stogov | 2005-12-01 | 1 | -7/+11 | |
| | ||||||
* | change zend_read_property() to allocate property zval too | Antony Dovgal | 2005-11-23 | 1 | -4/+5 | |
| | ||||||
* | fix #35336 (crash on PDO::FETCH_CLASS + __set()) | Antony Dovgal | 2005-11-23 | 1 | -31/+54 | |
| | ||||||
* | Allow zend_parse_parameters to handle non-well formed integers, but raise | Ilia Alshanetsky | 2005-11-17 | 1 | -2/+2 | |
| | | | | | E_NOTICE in the process. | |||||
* | - Fix static check in zend_is_callable_ex() | Marcus Boerger | 2005-11-03 | 1 | -41/+18 | |
| | | | | | | | | - Fix/speedup zend_make_callable() # Actually the ...STATIC... flag in zend_is_callable_ex() *must* go, too. # We keep it for the moment to support old stuff and skip analyzing them # in detail... | |||||
* | - Add missing cases and checks | Marcus Boerger | 2005-11-02 | 1 | -16/+44 | |
| | ||||||
* | Fixed bug #34879 (str_replace, array_map corrupt negative array indexes on ↵ | Dmitry Stogov | 2005-10-28 | 1 | -12/+12 | |
| | | | | 64-bit platforms) | |||||
* | Fixed memory leak on error | Ilia Alshanetsky | 2005-10-27 | 1 | -0/+4 | |
| | ||||||
* | - MFH zend_is_callable_ex() returns zend_class_entry* if available | Marcus Boerger | 2005-10-25 | 1 | -6/+16 | |
| | ||||||
* | ws fix | Antony Dovgal | 2005-10-13 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug #34678 (__call(), is_callable() and static methods) | Dmitry Stogov | 2005-10-03 | 1 | -1/+1 | |
| | ||||||
* | Support for class constants and static members for internal classes | Dmitry Stogov | 2005-09-01 | 1 | -2/+221 | |
| | ||||||
* | Fixed typo (ZVAL_LONG() -> ZVAL_DOUBLE()) | Dmitry Stogov | 2005-08-12 | 1 | -1/+1 | |
| | ||||||
* | - Show the dependancy name we could not find (req_mod is null here when it ↵ | foobar | 2005-08-08 | 1 | -1/+1 | |
| | | | | is not found :) | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 | |
| | ||||||
* | - Add convenience function zend_is_callable_ex() and base zend_is_callable | Marcus Boerger | 2005-07-28 | 1 | -11/+44 | |
| | | | | | | | | 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. | |||||
* | - Fix #33853 | Marcus Boerger | 2005-07-25 | 1 | -8/+16 | |
| | | | | | | | | | # When a static class function is being called then we first look for the # class with name unchanged. If the class is then not available it the # method can never be callable, thus we return 0. If the class is available # the lowercased name will be broken up into class and function and 1 is # being returned. | |||||
* | Fixed bug in new module statrup mechanism | Dmitry Stogov | 2005-07-18 | 1 | -8/+8 | |
| | ||||||
* | Fixed bug #33512 (Add missing support for isset()/unset() overloading to ↵ | Dmitry Stogov | 2005-07-07 | 1 | -1/+23 | |
| | | | | complement the property get/set methods) | |||||
* | Restored old behavior of zend_statup_module() | Dmitry Stogov | 2005-06-30 | 1 | -5/+5 | |
| | ||||||
* | add comment | Stanislav Malyshev | 2005-06-29 | 1 | -0/+1 | |
| | ||||||
* | fix various "Class entry requested for an object without PHP class" messages | Stanislav Malyshev | 2005-06-27 | 1 | -3/+33 | |
| | | | | | | | when working with non-PHP objects. # Using Z_OBJCE(object)->name is usually bad idea unless you know it's # a pure PHP object | |||||
* | improve error messages when error raised from an internal class (do not hide ↵ | Antony Dovgal | 2005-06-17 | 1 | -3/+9 | |
| | | | | class name) | |||||
* | Improved PHP extension loading mechanism with support for module ↵ | Dmitry Stogov | 2005-06-17 | 1 | -16/+116 | |
| | | | | dependencies and conflicts. | |||||
* | Fixed bug #30332 (zend.ze1_compatibility_mode isnt fully compatable with ↵ | Dmitry Stogov | 2005-04-29 | 1 | -1/+15 | |
| | | | | array_push()) | |||||
* | Fixed bug #29210 (Function: is_callable - no support for private and ↵ | Dmitry Stogov | 2005-04-27 | 1 | -6/+19 | |
| | | | | protected classes) | |||||
* | Fixed bug #30702 (cannot initialize class variable from class constant) | Dmitry Stogov | 2005-04-26 | 1 | -0/+5 | |
| | ||||||
* | - Add ReflectionProperty::getDocComment() | Marcus Boerger | 2005-04-19 | 1 | -0/+8 | |
| | ||||||
* | internal_function->fn_flags is not initialized at this point | Andrei Zmievski | 2005-03-21 | 1 | -1/+1 | |
| | ||||||
* | don't call rshutdown twice for dl()'d modules. | Wez Furlong | 2005-03-16 | 1 | -3/+0 | |
| | | | | | Spotted by Andrei. | |||||
* | fix shutdown so that dl()'d modules are unloaded after all the dtors have | Wez Furlong | 2005-03-15 | 1 | -12/+11 | |
| | | | | | been called. | |||||
* | - A little optimization to prevent problems when trying to reimplement an | Marcus Boerger | 2005-02-17 | 1 | -2/+3 | |
| | | | | | interface inherited from an interfaces that was just implemented...... | |||||
* | - No C++ ruleZ here | Marcus Boerger | 2005-02-17 | 1 | -1/+1 | |
| | ||||||
* | - Actually we must do this in two steps: 1st resize the table and set all | Marcus Boerger | 2005-02-17 | 1 | -2/+5 | |
| | | | | | interfaces, 2nd implement the interfaces | |||||
* | - Incrementation is done elsewhere | Marcus Boerger | 2005-02-17 | 1 | -1/+1 | |
| | ||||||
* | - Fix windows build (funny MS compiler) | Marcus Boerger | 2005-02-17 | 1 | -1/+1 | |
| | ||||||
* | added some missing zend_[declare|update]_property_...() convenience | Hartmut Holzgraefe | 2005-02-04 | 1 | -0/+76 | |
| | | | | | functions for bool, double and binary safe string data | |||||
* | - Fix #31651 (ReflectionClass::getDefaultProperties segfaults with arrays.) | Marcus Boerger | 2005-01-22 | 1 | -5/+11 | |
| |