ognistyi / way-for-pay-sdk-php
WayForPay SDK + Yii2 组件
dev-master
2020-02-27 08:59 UTC
Requires
- php: ^7.0
This package is not auto-updated.
Last update: 2024-09-20 13:25:23 UTC
README
用于在 WayForPay 系统中生成支付库的库
支付按钮生成示例
$order = new WayForPay("test_merch_n1", "flk3409refn54t54t*FNJRET");
$order->addProduct("Процессор Intel Core i5-4670 3.4GHz",1000, 1)
->addProduct("Память Kingston DDR3-1600 4096MB PC3-12800", 547.36, 1)
->setMerchantDomainName('www.market.ua')
->setOrderReference('56')
->setOrderDate(1415379863)
->setAmount(1547.36)
->setCurrency('UAH');
echo $order->getButtonPayment('Отправить', array('class'=>'paymentOrder', 'id'=>'btnPayment'));