commit | author | age
|
e57e2f
|
1 |
<?php |
Z |
2 |
|
|
3 |
// +---------------------------------------------------------------------- |
|
4 |
// | ThinkPHP [ WE CAN DO IT JUST THINK ] |
|
5 |
// +---------------------------------------------------------------------- |
|
6 |
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved. |
|
7 |
// +---------------------------------------------------------------------- |
|
8 |
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) |
|
9 |
// +---------------------------------------------------------------------- |
|
10 |
// | Author: liu21st <liu21st@gmail.com> |
|
11 |
// +---------------------------------------------------------------------- |
|
12 |
// 应用入口文件 |
|
13 |
// 检测PHP环境 |
|
14 |
if (version_compare(PHP_VERSION, '5.3.0', '<')) { |
|
15 |
die('require PHP > 5.3.0 !'); |
|
16 |
} |
|
17 |
|
|
18 |
// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false |
|
19 |
define('APP_DEBUG', true); |
|
20 |
|
|
21 |
// 定义应用目录 |
|
22 |
define('APP_PATH', './Application/'); |
|
23 |
|
|
24 |
// 引入ThinkPHP入口文件 |
|
25 |
require './ThinkPHP/ThinkPHP.php'; |