PHP code example of tbryan24 / huifupay

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

    

tbryan24 / huifupay example snippets




namespace support;

use tbryan24\Huifupay\Huifupay;
use Webman\Bootstrap;

class HuifupayInit implements Bootstrap
{
    public static function start($worker)
    {
        $debug = false;
        if (true === config('app.debug')) {
            $debug = true;
        }
        $config["sys_id"] = "你的sys_id";
        $config["product_id"] = "你的product_id";
        $config["rsa_merch_private_key"] = "填写你的商户私钥";
        $config["rsa_huifu_public_key"] = "填写你的汇付公钥";
        $huifupay = new Huifupay();
        $huifupay->setDebug($debug)->setLogDir(runtime_path() . '/logs')->setConfig($config)->init();
    }
}

return [
    // ...这里省略了其它配置...
    
	\support\HuifupayInit::class

];