vr-shopxo-source/alipay_life_notify.php

18 lines
261 B
PHP
Raw Normal View History

2018-10-22 07:36:28 +00:00
<?php
2018-10-22 09:39:41 +00:00
/**
* 支付宝生活号回调处理
*/
// 默认绑定模块
$_GET['m'] = 'Api';
$_GET['c'] = 'AlipayLife';
$_GET['a'] = 'Index';
// 引入公共入口文件
require './core.php';
// 引入ThinkPHP入口文件
require './ThinkPHP/ThinkPHP.php';
?>