PayAbstract.php
1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace WebPlugin\Pay;
abstract class PayAbstract implements PayInterface {
/**
* 记录日志的前缀,每种支付方式都有三个项目,请求、回复成功,回复失败,如:alipay_request, alipay_success_response, alipay_error_response
*/
public $logProjectPrefix = '';
/**
* 用于存储通知回调的基础url
*
* @var
*/
public $baseNoticeUrl = "http://www.yohobuy.com/pay/";
/**
* 测试的回调地址
* Enter description here ...
* @var string
*/
public $testBaseNoticeUrl = "http://www.yohobuy.com/pay/";
/**
* 获取支付的基地址
*
* @param bool $isTest
* @return string
*/
public function getBaseNoticeUrl($isTest){
return $isTest ? $this->testBaseNoticeUrl : $this->baseNoticeUrl;
}
/**
* h(non-PHPdoc)
* @see QPay_Utils_Interface::getPayRequestPars()
* @param Reqparams $params
*/
public function getPayRequestPars(Reqparams $params) {
}
/**
* (non-PHPdoc)
* @see QPay_Utils_Interface::parseResponse()
* @param array $arrResponse
* @return void
*/
public function parseResponse(array $arrResponse){
}
/**
* (non-PHPdoc)
* @see QPay_Utils_Interface::convertResult()
*/
protected function convertResult($resultCode) {
}
/**
* (non-PHPdoc)
* @see QPay_Utils_Interface::verifResponse()
*/
protected function checkResponse(array $arrResponse){
}
}