What would be the suggested method of simulating parent::__construct in C-level objects?
I looked through the source and could find no examples to draw from. Since my base object is the foundation of my extension, its constructor has to be called on each derived object creation. I have a few ideas that have to do with looping through ce->parent and zend_call_function. Was wondering if you guys can offer some of your experience on how you would approach this problem. Bob Silva