1 Star 0 Fork 0

爱我所爱/group-tp-backend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
make_notify.php 949 Bytes
一键复制 编辑 原始数据 按行查看 历史
爱我所爱 提交于 2024-08-16 15:16 . init
<?php
/**
* lionfish 商城系统
*
* ==========================================================================
* @link http://www.liofis.com/
* @copyright Copyright (c) 2015-2016 liofis.com.
* @license http://www.liofis.com/license.html License
* ==========================================================================
*
* @author fish
*
*/
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/' );
if (!is_file( 'Modules/Common/Conf/db.php')) {
header('Location: ./install.php');
exit;
}
//index.php?c=Public&a=login
//Payment/weixin_notify
$_GET['c'] = 'Notify';
$_GET['a'] = 'orderNotify';
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

搜索帮助