PHP code example of vantiv / cnp-payments-sdk
1. Go to this page and download the library: Download vantiv/cnp-payments-sdk 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/ */
vantiv / cnp-payments-sdk example snippets
$sale_info = array(
'id' => '42',
'orderId' => '1',
'amount' => '10010',
'orderSource' => 'ecommerce',
'billToAddress' => array(
'name' => 'John Smith' ,
'addressLine1' => ' 1 Main St.',
'city' => 'Burlington' ,
'state' => 'MA' ,
'zip' => '0183-3747',
'country' => 'US'),
'card' => array(
'number' => '5112010000000003',
'expDate' => '0112',
'cardValidationNum' => '349',
'type' => 'MC' )
);
$initialize = new cnp\sdk\CnpOnlineRequest();
$saleResponse =$initialize->saleRequest($sale_info);
#display results
echo ("Response: " . (cnp\sdk\XmlParser::getNode($saleResponse,'response')) . "<br>");
echo ("Message: " . cnp\sdk\XmlParser::getNode($saleResponse,'message') . "<br>");
echo ("Vantiv eCommerce Transaction ID: " . cnp\sdk\XmlParser::getNode($saleResponse,'cnpTxnId'));
/ Visa $10.00 sale
$hash_in = array(
'id' => '42',
'amount'=>'106',
'orderId' => '123213',
'orderSource'=>'ecommerce',
'card'=>array(
'type'=>'VI',
'number' =>'4100000000000001',
'expDate' =>'1000')
);
//Perform the transaction on the Vantiv eCommerce Platform
$initialize = new CnpOnlineRequest();
$saleResponse = $initialize->saleRequest($hash_in);
// Display Result
echo ("Message: " . XMLParser::getNode($saleResponse,'message') . "<br>");
echo ("Vantiv eCommerce Transaction ID: " . XMLParser::getNode($saleResponse,'cnpTxnId'));
/ Visa $10.00 sale
$hash_in = array(
'id' => '42',
'amount'=>'106',
'orderId' => '123213',
'orderSource'=>'ecommerce',
'card'=>array(
'type'=>'VI',
'number' =>'4100000000000001',
'expDate' =>'1000')
);
//Perform the transaction on the Vantiv eCommerce Platform
$initialize = new CnpOnlineRequest($treeResponse=true);
$saleResponse = $initialize->saleRequest($hash_in);
// Display Result
echo ("Message: " . $saleResponse->saleResponse->message . "<br>");
echo ("Vantiv eCommerce Transaction ID: " . $saleResponse->saleResponse->cnpTxnId);
bash
PHP Fatal error:
bash
PHP Fatal error: