常量参考
最后更新于:2022-04-01 11:14:21
### 框架与定义常量如下:
**常量声明必须全部大写以下划线分割**
**框架内置常量目前共有17个,包含可二次定义常量7个**
当访问URL`http://127.0.0.1/Idea-framework/index.php?m=home&c=Index&a=index`时,各常量值如下表所示:
| 常量 | 说明 | 权限 | 演示 |
| --- | --- | --- | --- |
| `FRAMEWORK_VERSION` | 框架版本 | 不可改 | `V1.0` |
| `ROOT_PATH` | 网站根路径 | 可改 | `D:/php/www/Idea-framework/` |
| `APP_NAME` | 应用目录名 | 可改 | `application` |
| `APP_PATH` | 应用路径 | 可改 | `D:/php/www/Idea-framework/application/` |
| `FRAMEWORK_NAME` | 框架版本目录名 | 可改 | `system` |
| `FRAMEWORK_PATH` | 框架路径 | 可改 | `D:/php/www/Idea-framework/system/` |
| `EXTEND_PATH` | 应用扩展路径 | 可改 | `D:/php/www/Idea-framework/application/extend/` |
| `CONFIG_FILE` | 配置文件 | 可改 | `D:/php/www/Idea-framework/application/config/Config.php` |
| `ENTRANCE` | 入口文件名 | 不可改 | `index.php` |
| `MODULE` | 当前(模块、平台、分组)名 | 不可改 | `home` |
| `CONTROLLER` | 当前控制器名 | 不可改 | `Index` |
| `ACTION` | 当前当前操作方法名 | 不可改 | `index` |
| `__ROOT__` | 网站根URL路径 | 不可改 | `http://127.0.0.1/Idea-framework/index.php` |
| `__APP__` | 当前页面应用URL路径 | 不可改 | `http://127.0.0.1/Idea-framework/application` |
| `__MODULE__` | 当前页面模块URL路径 | 不可改 | `http://127.0.0.1/Idea-framework/index.php?m=home` |
| `__CONTROLLER__` | 当前页面控制器URL路径 | 不可改 | `http://127.0.0.1/Idea-framework/index.php?m=home&c=Index` |
| `__ACTION__` | 当前页面操作URL路径 | 不可改 | `http://127.0.0.1/Idea-framework/index.php?m=home&c=Index&a=index` |