-1
我需要整合ebs支付網關。我正在尋找很多,但我可以找到解決方案。 響應使用POST方法提供給付款申請中ReturnURL參數下定義的URL。 $response['ResponseCode'] == 0
表示交易已成功完成。除0值交易失敗外。我找不到$response['ResponseCode'] == 0
。使用PHP EBS支付網關集成
這裏我的代碼
if(isset($_GET['DR'])) {
require('Rc43.php');
$DR = preg_replace("/\s/","+",$_GET['DR']);
$rc4 = new Crypt_RC4($secret_key);
$QueryString = base64_decode($DR);
$rc4->decrypt($QueryString);
$QueryString = split('&',$QueryString);
$response = array();
foreach($QueryString as $param){
$param = split('=',$param);
$response[$param[0]] = urldecode($param[1]);
}
}
你有什麼問題? – hammus
只是我發現文章幫助我很多 – user3090955
我沒有得到響應代碼 – user3090955