Well reimplementing autoloading doesn't seem such a bad idea.
With the integrated autoload ...there is one very stupid way of doing what
you want. Something like this (I suppose you know which class is the parent
of the one that is 'missing'):
eval("class $class_name extends THE_PARENT {}");
You can put a field with the actual class name and fill it in the
constructor so you would know if it's the actual class B or just A with a
different name.
(What I just wrote looks very stupid... Don't laugh at me very much please.
:D)
I'll think of something smarter...this is the first thing that came into my
mind.
Btw why is it so important to use autoloading anyway?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php