### 入口文件:
- 定义常量
- 加载常用函数库
- 框架启动
indexphp
```
<?php
/**
1.定义常量
2.加载常用函数库
3.框架启动
*/
// 本地域名: http://immoc.com:8088/index.php
// 定义常量
define('IMMOC', realpath('D:\software\phpstudy_pro\WWW\localhost\immoc\/'));
define('CORE', IMMOC.'/core');
define('APP', IMMOC.'/app');
define('DEBUG', 'true');
// 开启错误提示
if (DEBUG) {
ini_set('display_error', 'on');
}else{
ini_set('display_error', 'off');
}
// 加载函数库
include_once CORE.'/common/function.php';
include_once CORE.'/Immoc.php';
// 启动
\core\Immoc::run();
```