[PHP-DEV] zend_do_end_class_declaration() question From: Stefan Arentz (stefan.arentz <email protected>)
Date: 09/13/01

Hi, I'm trying to add some code to zend_do_end_class_declaration that
looks at the parent class. However the following check always fails,
even for classes that do have parents:

   ce = CG(active_class_entry);

   if (ce->parent) {
     fprintf(stderr, "Class has a parent\n");
   }

I don't understand this. I can see that parent is being set in the
zend_do_begin_class_declaration() function.

What's going on here?

 Stefan

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>