1 Star 4 Fork 2

Ripper / 微擎tp模块框架

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 1016 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ripper 提交于 2022-02-14 16:31 . 迁移版本发布
<?php
// +----------------------------------------------------------------------
// | ThinkPHP BY W7 [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2020 http://wslmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Company ( 沈阳创彩科技有限公司 )
// +----------------------------------------------------------------------
// | Author: wslmf <wangyifani@foxmail.com>
// +----------------------------------------------------------------------
// [ 应用入口文件 ]
namespace think;
//强制php版本
if (version_compare(PHP_VERSION, '7.1.0', '<')) die('require PHP >= 7.1.0 !');
// 处理微擎ThinkPHP路由规则
require __DIR__ . '/start.php';
// 加载ThinkPHP框架
require __DIR__ . '/source/thinkphp/base.php';
// 注册并绑定路由规则
Route::bind($tpM . "/" . $controller . "/" . $method);
App::route(false);
// 执行应用并响应
App::run()->send();
PHP
1
https://gitee.com/ripperTs/w7_tp5.0.git
git@gitee.com:ripperTs/w7_tp5.0.git
ripperTs
w7_tp5.0
微擎tp模块框架
master

搜索帮助