### 框架與定義常量如下:
**常量聲明必須全部大寫以下劃線分割**
**框架內置常量目前共有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` |