forked from xwjonline/lyadmin_v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·40 lines (34 loc) · 982 Bytes
/
Copy pathindex.php
File metadata and controls
executable file
·40 lines (34 loc) · 982 Bytes
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
<?php
// +----------------------------------------------------------------------
// | OpenCMF [ Simple Efficient Excellent ]
// +----------------------------------------------------------------------
// | Copyright (c) 2014 http://www.opencmf.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: jry <598821125@qq.com>
// +----------------------------------------------------------------------
/**
* Content-type设置
*/
header("Content-type: text/html; charset=utf-8");
/**
* PHP版本检查
*/
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
die('require PHP > 5.4.0 !');
}
/**
* 开发模式环境变量前缀
*/
define('ENV_PRE', 'ly_');
/**
* 定义前台标记
*/
define('MODULE_MARK', 'Home');
/**
* 包含开发模式数据库连接配置
*/
if (@$_SERVER[ENV_PRE . 'DEV_MODE'] !== 'true') {
@include __DIR__ . '/data/dev.php';
}
// 加载框架引导文件
require __DIR__ . '/lyf.php';