Putting models in library directory in Zend Framework
问题 I want to put models outside module directory in Zend Framework. To be precise, in /library folder library/ models/ actors/ ActorsMapper.php Actor.php books/ BooksMapper.php Book.php INSTEAD OF application/ modules/ models/ actors/ ActorsMapper.php Actor.php books/ BooksMapper.php Book.php This is done so that I don't have to create separate model for each of the module I create. What configurations will I have to change? If you need more details, please ask. Thank you :) 回答1: First answer