Hi.
I need use Zend for my old project which use different style of class name. I
use class.ClassName.php. Problem of Zend_Loader that I can't modify it. I can
make extension, but Zend Internal use
"Zend_Loader::loadClass($this->_rowClass);" I think, that this is not good idea.
When I have set this:
MyZendLoader::registerAutoload('MyZendLoader');
Zend_Loader should use this.
What about add this to loadClass() method?
if (spl_autoload_functions()!==false) spl_autoload_call($class);
--
Tomas Prochazka