sch-group/zotto-sdk

Zotto支付API连接器

v7.1 2021-09-07 08:49 UTC

This package is auto-updated.

Last update: 2024-09-07 15:18:45 UTC


README

ZOTTO支付系统API连接器

composer require sch-group/zotto-sdk

创建交易

       $config = new ZottoConfig($config['host'], $config['merchant_key'], $config['merchant_secret']);
       $client = new ZottoConnector($config);
       
        $transaction = new Transaction(
                   rand(0, 10000000) . "test",
                   100,
                   'EUR',
                   'https://www.google.com',
                   'https://www.google.com',
                   'https://www.google.com',
                   'https://www.google.com',
                   'https://www.google.com',
                   rand(0, 10000000) . "test",
                   Transaction::CARD_REDIRECT_TYPE
        );
       
       $html = $lient->generatePaymentLink($transaction);