forked from ectouch/ectouch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrespond.php
More file actions
22 lines (20 loc) · 865 Bytes
/
respond.php
File metadata and controls
22 lines (20 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* ECTouch Open Source Project
* ============================================================================
* Copyright (c) 2012-2014 http://ectouch.cn All rights reserved.
* ----------------------------------------------------------------------------
* 文件名称:respond.php
* ----------------------------------------------------------------------------
* 功能描述:支付接口通知文件
* ----------------------------------------------------------------------------
* Licensed ( http://www.ectouch.cn/docs/license.txt )
* ----------------------------------------------------------------------------
*/
define('IN_ECTOUCH', true);
define('CONTROLLER_NAME', 'Respond');
if (!isset($_GET['code'])) {
header('location: index.php?'.$_SERVER['QUERY_STRING']);
exit();
}
require dirname(__FILE__) . '/include/bootstrap.php';