Tal,
I guess you just want to find out which classes an extension defines. I don't think the current architecture allows for it.
There are two ways of going about it:
1. Keep track of extension classes with a HashTable (or list) in zend_module_entry. This list would be updated when zend_register_internal_class() is called.
2. Add a field called module_number to zend_class_entry.
I think the first one would be more appropriate, but I welcome other comments.
You forgot about one idea i do like much more: registering extension classes in a seperate namespace (e.g.: the extension name).
Besides that the idea is really cool and improves introspection. What about adding a SHORT textual info to the function/class members?
marcus
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php