mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-02 11:59:16 +08:00
18 lines
296 B
PHP
Executable File
18 lines
296 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 订单支付异步入口
|
|
*/
|
|
|
|
// 默认绑定模块
|
|
define('BIND_MODULE', 'Api');
|
|
define('BIND_CONTROLLER', 'OrderNotify');
|
|
define('BIND_ACTION', 'PayNotify');
|
|
|
|
// 引入公共入口文件
|
|
require '../core.php';
|
|
|
|
// 引入ThinkPHP入口文件
|
|
require '../ThinkPHP/ThinkPHP.php';
|
|
|
|
?>
|