PHP code example of hughes / spgateway-store

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

    

hughes / spgateway-store example snippets




        use VeryBuy\Payment\Spgateway\Core\RequestBuilder;
        use VeryBuy\Payment\Spgateway\Core\Support\RequestContract;
        use VeryBuy\Payment\Spgateway\Store\StoreRequest;

        $builder = new RequestBuilder([
            'HashKey' => '{Spgateway HashKey}',
            'HashIV' => '{Spgateway HashIV}',
            'MerchantID' => '{Spgateway MerchantID}'
        ], RequestContract::REQUEST_URI_TEST);

        $request = new StoreRequest([
            'Amt' => 30,                                // 金額不能低於 30 或大於 20,000
            'MerchantOrderNo' => 'T'.time(),
            'ItemDesc' => 'Spgateway payment test.',
            'Email' => '{email}',
            'NotifyURL' => '付款接收 URL',
            'CustomerURL' => '取號接收 URL',
            'ClientBackURL' => '返回 URL',
        ]);