if (version_compare("5.6", PHP_VERSION, ">")) {
header("Content-type: text/html; charset=utf-8");
die("
ERROR
当前PHP版本为:".PHP_VERSION."
RGCMS必须在PHP5.6+以上环境运行!!!
");
}
define('ENTER_NAME', 'HOME');
define('APP_PATH', __DIR__ . '/app/');
define('DS', DIRECTORY_SEPARATOR);
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';
// 支持事先使用静态方法设置Request对象和Config对象
// 执行应用并响应
Container::get('app',[APP_PATH])->run()->send();