Ai
1 Star 3 Fork 81

linuxof/fastadmin-tp6

forked from Ice/yfcmf-tp6 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 757 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* ============================================================================
* Created by PhpStorm.
* User: Ice
* 邮箱: ice@sbing.vip
* 网址: https://sbing.vip
* Date: 2019/11/27 下午6:09
* ============================================================================
*/
// [ 应用入口文件 ]
namespace think;
// 判断是否安装YFCMF-TP6
if (! is_file('../config/install.lock')) {
header("location:./install.php");
exit;
}
//是否composer
if (! file_exists('../vendor')) {
exit('根目录缺少vendor,请先composer install');
}
require __DIR__.'/../vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$response = $http->run();
$response->send();
$http->end($response);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/linuxof/fastadmin-tp6.git
git@gitee.com:linuxof/fastadmin-tp6.git
linuxof
fastadmin-tp6
fastadmin-tp6
master

搜索帮助