forked from happen-zhang/easy-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
executable file
·32 lines (25 loc) · 1.09 KB
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2011 http://topthink.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// |
// +----------------------------------------------------------------------
// 应用入口文件
// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 网站文件入口位置
define('WEB_ROOT', dirname(__FILE__) . '/');
// 定义应用目录
define('APP_NAME', 'Admin');
define('APP_PATH', './Admin/');
define('THINK_PATH', realpath('./ThinkPHP') . '/');
// 运行缓存目录
define('RUNTIME_PATH', WEB_ROOT . 'Cache/Runtime/' . APP_NAME . '/');
// 开启调试
define('APP_DEBUG', true);
// 引入ThinkPHP入口文件
require THINK_PATH . 'ThinkPHP.php';