Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tagphp_ibase_before_split | SVN Migration | 2004-01-25 | 1 | -173/+0 |
| | | | | 'php_ibase_before_split'. | ||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | Simplify | Marcus Boerger | 2003-12-27 | 1 | -25/+7 |
| | |||||
* | Synch/Unify error messages related to function/method calls | Marcus Boerger | 2003-09-02 | 1 | -2/+2 |
| | |||||
* | Precise destructor errors | Marcus Boerger | 2003-08-09 | 1 | -3/+14 |
| | |||||
* | make clone and throw coexist peacefully | Stanislav Malyshev | 2003-07-27 | 1 | -1/+3 |
| | |||||
* | Shuffle code to ease writing clone handlers | Marcus Boerger | 2003-07-19 | 1 | -16/+21 |
| | |||||
* | Temporairy solution to overcome shutdown propbelms with objects that have | Marcus Boerger | 2003-07-02 | 1 | -2/+3 |
| | | | | | | | | | hidden destructors. # # If we set the error level to E_ERROR what we must to to be correct and an # object needs to be automatically destructed in shutdown process then the # exit would cause memory corruption and a SEGV. | ||||
* | Reorganize this a bit to ensure the object memory is destructed before | Marcus Boerger | 2003-07-02 | 1 | -27/+31 |
| | | | | | showing the error. | ||||
* | Finally fix property cloning and fix the tests accordingly. | Marcus Boerger | 2003-07-02 | 1 | -1/+7 |
| | | | | | | | | # The default behaviour is to copy all properties with all current values # from the old object. But if __clone is overwritten then only the default # properties are cloned with their correct default values. So we keep # the type system intact and also allow real __clone overwriting now. | ||||
* | Fix __clone(). | Marcus Boerger | 2003-07-01 | 1 | -7/+4 |
| | | | | | | | | | # This is somewhat discussable. I copied all properties from the old to the # new object. But for type correctness we only need to copy the properties # declared in the class and its parents. # # Also someone might want to take care about static and const members. | ||||
* | Fix destructor visibility | Marcus Boerger | 2003-07-01 | 1 | -2/+17 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -1/+1 |
| | |||||
* | Eliminate TSRMLS_FETCH() calls in zend_objects_new() and ↵ | Sebastian Bergmann | 2003-03-26 | 1 | -7/+4 |
| | | | | zend_objects_get_address(). | ||||
* | - Added some missing CVS $Id$ tags, headers and footers. | foobar | 2003-02-01 | 1 | -0/+29 |
| | |||||
* | export zend_objects_destroy_object() | Harald Radi | 2003-01-17 | 1 | -1/+1 |
| | | | | | | | static inline was meaningless anyways as the function was only used as a callback handler and was never called directly | ||||
* | - Change the automatically created variable $clone in __clone() to | Andi Gutmans | 2002-11-05 | 1 | -1/+1 |
| | | | | | | | | - $that as discussed at the PHP Conference. If there are any objections - alternative names please let me know. The reason for changing it from - $clone is because $clone sounds as if it's the newly cloned object and - not the old one. | ||||
* | Support for __get, __set and __call in classes. | Stanislav Malyshev | 2002-09-04 | 1 | -0/+2 |
| | | | | | | | This should work as follows: if class hasn't member with given name, __get/__set is called. If class has no method with given name, __call is called. __get/__set are not recursive, __call can be. | ||||
* | Fix warning. | Sebastian Bergmann | 2002-08-08 | 1 | -1/+1 |
| | |||||
* | Add ZEND_API to functions | Stanislav Malyshev | 2002-08-08 | 1 | -3/+3 |
| | |||||
* | - Export zend_object_get_address() | Andi Gutmans | 2002-07-01 | 1 | -1/+1 |
| | |||||
* | - Nuke persist_alloc(). | Andi Gutmans | 2002-06-22 | 1 | -1/+1 |
| | |||||
* | - Fix build | Andi Gutmans | 2002-05-31 | 1 | -4/+3 |
| | |||||
* | Generalize object storage and reference bookkeeping | Stanislav Malyshev | 2002-05-31 | 1 | -139/+5 |
| | |||||
* | - constructor_called is supposed to be destructor_called | Andi Gutmans | 2002-05-14 | 1 | -6/+6 |
| | |||||
* | - Pass TSRMLS to callbacks. | Andi Gutmans | 2002-03-15 | 1 | -8/+4 |
| | |||||
* | - Fix crash reported by Sebastian when destructor function causes a fatal | Andi Gutmans | 2002-03-01 | 1 | -1/+3 |
| | | | | | - error. I hope this does it and we don't find any other problems. | ||||
* | - Remove object debug messages. | Andi Gutmans | 2002-02-08 | 1 | -1/+1 |
| | |||||
* | Mega-commit: Enter the new object model | Stanislav Malyshev | 2002-02-07 | 1 | -19/+15 |
| | | | | | | | Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly. | ||||
* | - Fix problem with the objects_destructor called during shutdown. It was | Andi Gutmans | 2002-02-04 | 1 | -2/+2 |
| | | | | | | | | | - freeing objects from id 0 instead of id 1. id 0 is not used. - Change isset/empty opcodes to support static members and the new way of - doing $this->foobar. Also the opcodes operate now on the hash table - combined with the variable names so that they can be overloaded by the - soon to be added overloading patch. | ||||
* | - First destructor hell fix. There was a situation where an object's | Andi Gutmans | 2002-01-25 | 1 | -1/+21 |
| | | | | | | | | | | - destructor could be run after its class was already dead. Right now - object destructors is the first thing whic happens during shutdown in - order to prevent this problem. It's very likely that destructors will - cause more grief and we'll have to outline exactly when you should use - them and what kind of logic you're allowed to do inside of them. - This bug was reported by sebastian. | ||||
* | - Use two underscores for __construct(), __clone and friends... | Andi Gutmans | 2001-12-27 | 1 | -4/+4 |
| | |||||
* | - Only check refcount of object if the destructor was called. | Andi Gutmans | 2001-12-27 | 1 | -13/+19 |
| | |||||
* | - Experimental support for destructors. We need to see if destructors | Andi Gutmans | 2001-12-27 | 1 | -8/+56 |
| | | | | | | | - will actually work well in the context of PHP so we should consider this - as experimental. Possible problems might be that when the constructor is - run PHP might not be in a stable state. | ||||
* | - Pretty much finish _clone() support | Andi Gutmans | 2001-12-26 | 1 | -3/+43 |
| | |||||
* | - Remove bogus notice | Andi Gutmans | 2001-08-16 | 1 | -3/+0 |
| | |||||
* | - Fix a bug in method calls. | Andi Gutmans | 2001-08-16 | 1 | -2/+27 |
| | | | | | - Try to get the old copying behavior of objects to work (doesn't work yet). | ||||
* | - More work on making objects work | Andi Gutmans | 2001-08-11 | 1 | -3/+0 |
| | |||||
* | - Fix some places which create objects. The fixes are ugly and will be | Andi Gutmans | 2001-08-11 | 1 | -1/+9 |
| | | | | | revised when things start working well | ||||
* | - Fix UNIX build. | Andi Gutmans | 2001-08-11 | 1 | -2/+2 |
| | |||||
* | - Sync Engine2 CVS with latest Engine CVS | Andi Gutmans | 2001-08-07 | 1 | -0/+122 |