PHP code example of zrkb / bancard

1. Go to this page and download the library: Download zrkb/bancard 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/ */

    

zrkb / bancard example snippets


use Bancard\Bancard;
use Bancard\Util\Currency;

Bancard::setPrivateKey('PRIVATE_KEY');
Bancard::setPublicKey('PUBLIC_KEY');
Bancard::setStaging(true);

$bancard = new Bancard;

$response = $bancard->singleBuy([
    'shop_process_id' => 7777777, // MUST be an integer
    'name' => 'My Product',
    'description' => 'Product Description',
    'amount' => '10000.00', // two decimals 

$response = $bancard->singleBuyConfirm([
    'shop_process_id' => 7777777,
    'amount' => '10000.00', // two decimals 

$response = $bancard->singleBuyGetConfirmation([
    'shop_process_id' => 7777777,
]);

$response = $bancard->singleBuyRollback([
    'shop_process_id' => 7777777,
]);