migs(万事达卡虚拟支付客户端)集成php

前端之家收集整理的这篇文章主要介绍了migs(万事达卡虚拟支付客户端)集成php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何机构都可以帮助我了解如何在PHP网站中集成migs(MasterCard虚拟支付客户端)!

我已经阅读了参考指南,但它没有用!

//此值提交给MIGS PAYMENT GATEWAY
$SECURE_SECRET =  $signature; //value from migs payment gateway
        $accessCode    =  $accesscode;//value from migs payment gateway
        $merchantId    =  $merchantid;//value from migs payment gateway
        $paymentdata = array(
                 "vpc_AccessCode" => $accessCode,"vpc_Amount" => ($amount*100),//our product price,must multipy by 100
                 "vpc_Command" => 'pay',"vpc_Locale" => 'en',// order id
                 "vpc_MerchTxnRef" => random_unique_value(like session),"vpc_Merchant" => $merchantId,"vpc_OrderInfo" => "Some Comment","vpc_ReturnURL" => "htps://yoursite.com/returnpoint",//here code for db updation,return variable here
                 "vpc_Version" => '1'
                           );

        $actionurl = 'https://migs.mastercard.com.au/vpcpay' . "?";
        $HashData = $SECURE_SECRET;
        $str = 0;
        foreach ($paymentdata as $key => $value) {
            // create the md5 input and URL
            if (strlen($value) > 0) {
                // this ensures the first paramter of the URL is preceded by the '?' char
                if ($appendAmp == 0) {
                    $actionurl .= urlencode($key) . '=' . urlencode($value);
                    $str = 1;
                } else {
                    $actionurl .= '&' . urlencode($key) . "=" . urlencode($value);
                }
                $HashData .= $value;
            }
        }

        if (strlen($SECURE_SECRET) > 0){$actionurl .= "&vpc_SecureHash=" . strtoupper(md5($HashData));}
        header("Location: " . $actionurl);
    }

/////////////////////返回值/////////////////////////// //////

the return url will be like

https://yoursite.com/returnpoint?vpc_TransactionNo="migs_transaction_number"&vpc_MerchTxnRef="random_unique_value(we post to migs)"&vpc_TxnResponseCode=value&vpc_Message="value"
 if vpc_TxnResponseCode = 0 -- success,vpc_Message = approved -- paymet is success,All other unsuccessfull payment
原文链接:https://www.f2er.com/php/130978.html

猜你在找的PHP相关文章