Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-05 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | - MFH: Constness (Added const qualifier to several function parameters) | Felipe Pena | 2008-08-12 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | fix bug #36898 (__set() leaks in classes extending internal ones) | Antony Dovgal | 2006-03-29 | 1 | -0/+2 |
| | | | | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) to initialize and destroy zend_object structs | ||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | - Revert following patch until we decide what is the right way to handle | Andi Gutmans | 2005-02-24 | 1 | -2/+2 |
| | | | | | | | - this: - Fix signatures they are all meant to be able to deal with any type in any object storage (though we are still missing several parts) | ||||
* | - Fix signatures they are all meant to be able to deal with any type in any | Marcus Boerger | 2005-02-22 | 1 | -2/+2 |
| | | | | | object storage (though we are still missing several parts) | ||||
* | wrap ZEND_API prototypes into BEGIN_EXTERN_C/END_EXTERN_C | Hartmut Holzgraefe | 2004-02-18 | 1 | -0/+2 |
| | | | | | for C++ extension support | ||||
* | Add new prototype | Marcus Boerger | 2004-02-04 | 1 | -0/+1 |
| | |||||
* | - 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? | ||||
* | Shuffle code to ease writing clone handlers | Marcus Boerger | 2003-07-19 | 1 | -0/+1 |
| | |||||
* | 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 | -2/+2 |
| | | | | 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 | -0/+1 |
| | | | | | | | static inline was meaningless anyways as the function was only used as a callback handler and was never called directly | ||||
* | Add ZEND_API to functions | Stanislav Malyshev | 2002-08-08 | 1 | -2/+2 |
| | |||||
* | - Export zend_object_get_address() | Andi Gutmans | 2002-07-01 | 1 | -1/+1 |
| | |||||
* | - Fix copy&paste problem where we allocated according to an old structure | Andi Gutmans | 2002-06-15 | 1 | -21/+0 |
| | | | | | - decleration and not the new one. | ||||
* | Generalize object storage and reference bookkeeping | Stanislav Malyshev | 2002-05-31 | 1 | -8/+0 |
| | |||||
* | - constructor_called is supposed to be destructor_called | Andi Gutmans | 2002-05-14 | 1 | -1/+1 |
| | |||||
* | added get_class_entry callback handler to the | Harald Radi | 2002-04-22 | 1 | -2/+0 |
| | | | | | object handlers structure | ||||
* | - Pass TSRMLS to callbacks. | Andi Gutmans | 2002-03-15 | 1 | -4/+4 |
| | |||||
* | Mega-commit: Enter the new object model | Stanislav Malyshev | 2002-02-07 | 1 | -5/+9 |
| | | | | | | | 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. | ||||
* | - First destructor hell fix. There was a situation where an object's | Andi Gutmans | 2002-01-25 | 1 | -0/+1 |
| | | | | | | | | | | - 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. | ||||
* | - Experimental support for destructors. We need to see if destructors | Andi Gutmans | 2001-12-27 | 1 | -0/+1 |
| | | | | | | | - 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. | ||||
* | add newline at end of file to avoid warnings | Stig S. Bakken | 2001-11-05 | 1 | -1/+1 |
| | |||||
* | - Fix a bug in method calls. | Andi Gutmans | 2001-08-16 | 1 | -0/+1 |
| | | | | | - Try to get the old copying behavior of objects to work (doesn't work yet). | ||||
* | - Fix some places which create objects. The fixes are ugly and will be | Andi Gutmans | 2001-08-11 | 1 | -1/+1 |
| | | | | | revised when things start working well | ||||
* | - Sync Engine2 CVS with latest Engine CVS | Andi Gutmans | 2001-08-07 | 1 | -0/+34 |