-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (38 loc) · 1.61 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <[email protected]>
// +----------------------------------------------------------------------
// 应用入口文件
//phpinfo();
// 检测PHP环境
if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
define('APP_DEBUG',true);//
/**
* 缓存目录设置
* 此目录必须可写,建议移动到非WEB目录
*/
define ( 'RUNTIME_PATH', './Runtime/' );
//定义公共模块的目录,放到应用目录外
define('COMMON_PATH','./Common/');
//关闭目录安全文件的生成
define('BUILD_DIR_SECURE', false);
// 定义应用目录
define('APP_PATH','./Application/');
define('BASE_DIR', dirname(__FILE__));
// 定义BASE_DIR(即index.php)相对于DOCMENT ROOT的相对路径前缀
$prefix = str_replace($_SERVER["DOCUMENT_ROOT"],'',str_replace('\\','/',BASE_DIR));
define('PREFIX_DIR',$prefix);
//echo PREFIX_DIR;
// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';
ini_set('max_execution_time',10);
echo ini_get('max_execution_time');
echo "---"; exit;
// 亲^_^ 后面不需要任何代码了 就是如此简单