1 Star 0 Fork 0

爱我所爱/group-tp-backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
wxapp.php 841 Bytes
一键复制 编辑 原始数据 按行查看 历史
爱我所爱 提交于 2024-08-16 18:01 . 维护支付
<?php
if (version_compare(PHP_VERSION, '5.3.0', '<')) {
die('require PHP > 5.3.0 !');
}
header("Content-Type:text/html; charset=utf-8");
define('APP_DEBUG', true);
define('BIND_MODULE', 'Home');
define('APP_PATH', './Modules/');
$wx_controller = $_REQUEST['controller']??'';
$wx_controller_arr = explode('.', $wx_controller);
if (!isset($wx_controller_arr[1])) {
$wx_controller_arr[1] = 'index';
}
unset($_GET['i']);
unset($_GET['t']);
unset($_GET['v']);
unset($_GET['from']);
unset($_GET['do']);
$_GET['c'] = $wx_controller_arr[0];
$_GET['a'] = $wx_controller_arr[1];
unset($_GET['controller']);
unset($_GET['m']);
// define('ROOT_PATH', str_replace('\\', '/', dirname(CCAFDBBFAED)) . '/');
define('ROOT_PATH',str_replace('\\','/',dirname(__FILE__)) . '/');
define('RUNTIME_PATH', './Runtime/');
require './ThinkPHP/ThinkPHP.php';
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangwen112255/group-tp-backend.git
git@gitee.com:wangwen112255/group-tp-backend.git
wangwen112255
group-tp-backend
group-tp-backend
master

搜索帮助