PHP code example of lightvoldemar / paybox-bank-api
1. Go to this page and download the library: Download lightvoldemar/paybox-bank-api 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/ */
lightvoldemar / paybox-bank-api example snippets
// Создание объекта Paybox с параметрами ID ордера, тип платежа, сумма транзакции, соль.
$oPayboxPay = new PayboxClient($order->id,$order->payment_type, $order->amount, $order->salt);
// Генератор соли
PayboxClient::generateSalt();
// Генератор строки
$oPayboxPay->generateSig();
// Генератор ссылки с параметром типа счета
$oPayboxPay->generateLink(PayboxClient::PURSE_PILLIKAN)