加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 973 Bytes
一键复制 编辑 原始数据 按行查看 历史
baigoStudio 提交于 2018-05-17 13:16 . v2.0.1
<?php
/*-----------------------------------------------------------------
!!!!警告!!!!
以下为系统文件,请勿修改
-----------------------------------------------------------------*/
define('BG_PATH_CONFIG', $_SERVER['DOCUMENT_ROOT'] . dirname($_SERVER['PHP_SELF']) . DIRECTORY_SEPARATOR . 'bg_config' . DIRECTORY_SEPARATOR);
define('BG_APP', 'pub');
if (file_exists(BG_PATH_CONFIG . 'config.class.php')) {
require(BG_PATH_CONFIG . 'config.class.php'); //配置生成类
} else {
exit('{"rcode":"x","msg":"Fatal Error: Config class does not exist!"}');
}
if (file_exists(BG_PATH_CONFIG . 'config.inc.php')) {
require(BG_PATH_CONFIG . 'config.inc.php'); //载入配置
} else {
exit('{"rcode":"x","msg":"Fatal Error: Config file does not exist!"}');
}
if (file_exists(BG_PATH_CORE . 'runtime.php')) {
require(BG_PATH_CORE . 'runtime.php');
} else {
exit('{"rcode":"x","msg":"Fatal Error: Runtime does not exist!"}');
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化