## 介绍
This7 框架使用单一入口访问,所有的请求都是通过入口文件完成的。无论从安全性还是方法调用及文件加载方面都带来了很高的便捷性。
## 文件
入口文件为 api/index.php
~~~
<?php
/**
* this7 PHP Framework
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @copyright 2016-2018 Yan TianZeng<qinuoyun@qq.com>
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link http://www.ub-7.com
*/
//DEBUG调试器
define('DEBUG', true);
//XDEBUG调试器
define('XDEBUG', false);
// Autoload 自动载入
require './vendor/autoload.php';
// 路由配置
require './server/connector/conveyancer350afa1a04089a7d38a3c6e83d119689.php';
~~~