## 框架加載
1. **/www/index.php**#所有nginx請求都會rewrite到此文件,如果nginx指定目錄存在對應物理文件不會rewrite
2. **/config.php**#加載框架初始化變量定義,如框架根目錄路徑
3. **/fend/fend.php**#框架啟動入口
1. auotload register
2. shutdown register
4. **/conf/cfg\_xxxx.php**#根據請求domain加載對應配置文件,此功能后期將會進行改進
5. **/conf/\*.php**#常量定義及其他配置加載內含db.php redis.php 所有在此目錄文件自動加載
6. **/fend/acl.php**#實際請求router所在地,router到對應controller并調用此函數,如果沒有指定函數默認調用controller->index()
1. ob\_start();
2. new Controller\_xxxx->methodxxxx()
3. ob\_end();
7. end #fpm清理所有變量