I'm working on a project now that isn't based on Zend Framework, however I would like to use some of Zend's components in it, namely Zend_Form and Zend_Acl.
The question is, what should I do in order to make these components know how to load their classes correctly when they are instantiated.
I suppose spl_register_autoload and set_include_path should be used, just can't figure out how exactly.
Thanks guys,
Zend_Loader_Autoloader::getInstance() plus setting right initial path in set_include_path did the trick.