PHP code example of voicetube / taiwan-payment-gateway
1. Go to this page and download the library: Download voicetube/taiwan-payment-gateway library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
voicetube / taiwan-payment-gateway example snippets
// create new order
// $respond_type:
// SpGateway: `POST` or `JSON` (default to 'JSON')
// AllPay, EcPay: `POST` only
$gw->newOrder(
// Available payment method
$gw->useBarCode();
$gw->useWebATM();
$gw->useCredit();
$gw->useTenPay(); // AllPay only
$gw->useTopUp(); // AllPay only
$gw->useATM();
$gw->useCVS();
$gw->useALL(); // AllPay, EcPay only
// spgateway only settings
$gw->setEmail('[email protected]'); // setting user email
$gw->triggerEmailModify(optional:boolean); // allow user update email address later.
$gw->onlyLoginMemberCanPay(optional:boolean); // force user must to be login later.
// Order settings
$gw->setUnionPay();
$gw->needExtraPaidInfo();
$gw->setCreditInstallment(
/**
* Use factory to create response or directly new the response
*/
$gwr = TaiwanPaymentGateway\TaiwanPaymentResponse::create('SpGateway', [
'hashKey' => 'c7fe1bfba42369ec1add502c9917e14d',
'hashIV' => '245a49c8fb5151f0',
]);
$spr = new TaiwanPaymentGateway\SpGatewayPaymentResponse([
'hashKey' => 'c7fe1bfba42369ec1add502c9917e14d',
'hashIV' => '245a49c8fb5151f0',
]);
$ecr = new TaiwanPaymentGateway\EcPayPaymentResponse([
'hashKey' => '5294y06JbISpM5x9',
'hashIV' => 'v77hoKGq4kWxNNIS',
]);
$apr = new TaiwanPaymentGateway\AllPayPaymentResponse([
'hashKey' => '5294y06JbISpM5x9',
'hashIV' => 'v77hoKGq4kWxNNIS',
]);
// processOrder will catch $_POST fields and clean it
// SpGateway: `POST` or `JSON`
// AllPay, EcPay: `POST` only
$result = $spr->processOrder(optional:$type='POST or JSON');
// dump the result
array(22) {
["Status"]=>
string(7) "SUCCESS"
["Message"]=>
string(12) "授權成功"
["MerchantID"]=>
string(9) "MS1234567"
["Amt"]=>
int(1200)
["TradeNo"]=>
string(17) "17032311330952317"
["MerchantOrderNo"]=>
string(15) "1703230034715"
["PaymentType"]=>
string(6) "CREDIT"
["RespondType"]=>
string(6) "String"
["CheckCode"]=>
string(64) "4B3DDA5FE88966928FEB903D6037B06A1A929087046E5E8D7A8CB2778A30D67C"
["PayTime"]=>
string(19) "2017-03-23 11:33:09"
["IP"]=>
string(12) "XXX.XXX.XXX.XXX"
["EscrowBank"]=>
string(3) "KGI"
["TokenUseStatus"]=>
int(0)
["RespondCode"]=>
string(2) "00"
["Auth"]=>
string(6) "930637"
["Card6No"]=>
string(6) "400022"
["Card4No"]=>
string(4) "1111"
["Inst"]=>
int(0)
["InstFirst"]=>
int(1200)
["InstEach"]=>
int(0)
["ECI"]=>
string(0) ""
["matched"]=>
bool(true)
}
// after processing, check the `matched` field.
// for allpay and ecpay, you will need to call `rspOk` or `rspError`.
$ecr->rspOk();
// or
$apr->rspError(optinal:'Custom error msg');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.