PHP code example of abdulbaset / paymob-payment-gateway
1. Go to this page and download the library: Download abdulbaset/paymob-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/ */
abdulbaset / paymob-payment-gateway example snippets
bash
$invoice = new PaymobPaymentMethod();
$invoice->setApiKey($API_Key);
$invoice->setAmountCents(10.00 * 100);
$invoice->getCardPaymentsURL('0123456', '123456');
bash
$invoice = new PaymobPaymentMethod();
$invoice->setApiKey($API_Key);
$invoice->setAmountCents(10.00 * 100);
$invoice->getMobileWalletsURL('0123456','01010101010');