1 Star 0 Fork 8

ledaishu / ZengCMS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
ZengCMS 提交于 2021-02-03 08:44 . 新版本
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2019 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// [ 应用入口文件 ]
namespace think;
// 安装方法 start
if (version_compare(PHP_VERSION, '7.1.0', '<')) {
header("Content-type: text/html; charset=utf-8");
die('PHP 7.1.0 及以上版本系统才可运行~ ');
}
if (!is_file($_SERVER['DOCUMENT_ROOT'].'/install.lock')){
header("location:/install/index.php");
exit;
}
// 安装方法 end
require __DIR__ . '/vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$response = $http->run();
$response->send();
$http->end($response);
PHP
1
https://gitee.com/ledaishu/ZengCMS.git
git@gitee.com:ledaishu/ZengCMS.git
ledaishu
ZengCMS
ZengCMS
master

搜索帮助