summaryrefslogtreecommitdiff
path: root/Zend/zend_objects.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagphp-4.3.0dev_zend2_alpha3SVN Migration2002-09-081-0/+2
| | | | 'php_4_3_0_dev_zend2_alpha3'.
* Fix warning.Sebastian Bergmann2002-08-081-1/+1
|
* Add ZEND_API to functionsStanislav Malyshev2002-08-081-3/+3
|
* - Export zend_object_get_address()Andi Gutmans2002-07-011-1/+1
|
* - Nuke persist_alloc().Andi Gutmans2002-06-221-1/+1
|
* - Fix buildAndi Gutmans2002-05-311-4/+3
|
* Generalize object storage and reference bookkeepingStanislav Malyshev2002-05-311-139/+5
|
* - constructor_called is supposed to be destructor_calledAndi Gutmans2002-05-141-6/+6
|
* - Pass TSRMLS to callbacks.Andi Gutmans2002-03-151-8/+4
|
* - Fix crash reported by Sebastian when destructor function causes a fatalAndi Gutmans2002-03-011-1/+3
| | | | | - error. I hope this does it and we don't find any other problems.
* - Remove object debug messages.Andi Gutmans2002-02-081-1/+1
|
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-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 wasAndi Gutmans2002-02-041-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'sAndi Gutmans2002-01-251-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 Gutmans2001-12-271-4/+4
|
* - Only check refcount of object if the destructor was called.Andi Gutmans2001-12-271-13/+19
|
* - Experimental support for destructors. We need to see if destructorsAndi Gutmans2001-12-271-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() supportAndi Gutmans2001-12-261-3/+43
|
* - Remove bogus noticeAndi Gutmans2001-08-161-3/+0
|
* - Fix a bug in method calls.Andi Gutmans2001-08-161-2/+27
| | | | | - Try to get the old copying behavior of objects to work (doesn't work yet).
* - More work on making objects workAndi Gutmans2001-08-111-3/+0
|
* - Fix some places which create objects. The fixes are ugly and will beAndi Gutmans2001-08-111-1/+9
| | | | | revised when things start working well
* - Fix UNIX build.Andi Gutmans2001-08-111-2/+2
|
* - Sync Engine2 CVS with latest Engine CVSAndi Gutmans2001-08-071-0/+122