84 Star 214 Fork 100

wstmall / wstmart

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
wstmall 提交于 2018-10-31 14:52 . WSTMart V2.0.7
<?php
namespace think;
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2015 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// 检测PHP环境
if(version_compare(PHP_VERSION,'5.6.0','<')) die('require PHP >= 5.6.0 !');
//进入安装目录
if(is_dir("install") && !file_exists("install/install.ok")){
header("Location:install/index.php");
exit();
}
// 定义应用目录
define('APP_PATH', __DIR__ . '/wstmart/');
define('DS',DIRECTORY_SEPARATOR);
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';
// 执行应用并响应
Container::get('app')->path(APP_PATH)->run()->send();
PHP
1
https://gitee.com/wstmall/wstmart.git
git@gitee.com:wstmall/wstmart.git
wstmall
wstmart
wstmart
master

搜索帮助