mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-08 06:35:37 +08:00
15 lines
222 B
PHP
Executable File
15 lines
222 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* 订单支付异步入口
|
|
*/
|
|
|
|
// 默认绑定模块
|
|
$_GET['s'] = '/api/ordernotify/notify';
|
|
|
|
// 支付模块标记
|
|
define('PAYMENT_TYPE', 'AlipayMini');
|
|
|
|
// 引入入口文件
|
|
require __DIR__.'/index.php';
|
|
?>
|