PHP code example of ajaz / payumoney-payment-gateway-php
1. Go to this page and download the library: Download ajaz/payumoney-payment-gateway-php 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/ */
ajaz / payumoney-payment-gateway-php example snippets
// return.php
use PaymentGateway\PayUmoney\PayUMoney;
use PaymentGateway\PayUmoney\PurchaseResult;
',
'testMode' => true
]);
$result = $payumoney->completePurchase($_POST);
if ($result->checksumIsValid() && $result->getStatus() === PurchaseResult::STATUS_COMPLETED) {
print 'Payment was successful.';
} else {
print 'Payment was not successful.';
}
$result = $payumoney->completePurchase($_POST);
// Returns Complete, Pending, Failed or Tampered
$result->getStatus();
// Returns an array of all the parameters of the transaction
$result->getParams();
// Returns the ID of the transaction
$result->getTransactionId();
// Returns true if the checksum is correct
$result->checksumIsValid();
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.