Zend_Loader:
可以帮助你动态加载需要的文件,
使用好处:不再需要那么多的require_once 命令
在Zend FrameWork系统中,只需要在index.php文件 set_include_path命令下面加上
require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload();
后,你将不再需要使用require_once 命令,
当你自己写php类时就需要注意类名,以下划线替代/,以例Zend_Loader自动加载