-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
46 lines (34 loc) · 1.22 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
<?php
/**
* @since version 3.2.0
* @author Fqb <[email protected]>
* @license http://www.dayrui.com/license
* @copyright Copyright (c) 2011 - 9999, Dayrui.Com, Inc.
*/
header('Content-Type: text/html; charset=utf-8');
// 显示错误提示
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING ^ E_STRICT);
function_exists('ini_set') && ini_set('display_errors', TRUE);
function_exists('ini_set') && ini_set('memory_limit', '1024M');
// 查询执行超时时间
function_exists('set_time_limit') && set_time_limit(60);
// 系统核心程序目录,支持自定义路径和改名
define('FCPATH', dirname(__FILE__).'/diy/');
// web网站目录,表示index.php文件的目录
define('WEBPATH', dirname(__FILE__).'/');
// web网站目录,表示index.php文件的目录
define('CACHEPATH', WEBPATH.'cache/');
// 是否允许编辑后台模板
define('IS_EDIT_TPL', 0);
// 该文件的名称
!defined('SELF') && define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
// 后台管理标识
!defined('IS_ADMIN') && define('IS_ADMIN', FALSE);
if (PHP_SAPI === 'cli' || defined('STDIN')) {
unset($_GET);
$_GET['c'] = 'cron';
$_GET['m'] = 'index';
chdir(dirname(__FILE__));
}
// 执行主程序
require FCPATH.'Init.php';