PHP code example of seunex17 / paychant-php

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

    

seunex17 / paychant-php example snippets




use ZubDev\Paychant;

NVIRONMENT', 'YOUR API KEY');



use ZubDev\Paychant;

NVIRONMENT', 'YOUR API KEY');

// Create new transaction
$request = [
   'amount' => 100, // Product price
   'currency' => 'NGN', // Available current are (NGN, USD, GBP, EUR, AUD, CAD, JPY, CNY)
   'title' => 'Sample product name', // Title of the order
   'payer_info' => '[email protected]', // Payer information
   'description' => 'Sample order description', // Description your order
   'cancel_url' => 'https://example.com/cancel', // Page to redirect to when user cancel payment
   'success_url' => 'https://example.com/success', // Page to redirect to for payment verification
   'callback_url' => 'https://example.com/webhook', // Webhook page for instant notification of order status
   //'token' => '', // If you will to generate a custom token you can fill in this Max 50
];

// Send request to payment page
$paychant->createNewOrder($request);

// For debugging if you get blank screen
// Please uncomment below code

// print_r($paychant->createNewOrder($request));



use ZubDev\Paychant;

NVIRONMENT', 'YOUR API KEY');
$data = $paychant->getOrder('ORDER ID');

echo '<pre>';
print_r($data);
echo '</pre>';



use ZubDev\Paychant;

NVIRONMENT', 'YOUR API KEY');
$data = $paychant->listOrders();

echo '<pre>';
print_r($data);
echo '</pre>';



use ZubDev\Paychant;

NVIRONMENT', 'YOUR API KEY');
$data = $paychant->getExchangeRates();

echo '<pre>';
print_r($data);
echo '</pre>';



use ZubDev\Paychant;

 SECRET KEY';
$paychant = new Paychant('ENVIRONMENT', 'YOUR API KEY');

/*
* Webhook will always return an array
*/

var_dump($paychant->webhook($webhookKey)); // This return an array

composer