CI文件加載順序,在入口文件index.php中最末行經過php
require_once BASEPATH.'core/CodeIgniter.php';
引入CodeIgniter.php 文件,在該文件中依次加載了\system\core文件家的如下文件ui
Common.php、Benchmark.ph、Hooks.php、Config.php、compat文件夾、Utf8.php、URI.php、Router.php、Output.php、Security.php、Input.php、Lang.php
在以上文件加載完成以後,經過如下方式引入Controller.php文件url
require_once BASEPATH.'core/Controller.php';
至此,CI能夠經過Application/controllers文件夾的控制器文件進行url訪問程序it