PHP code example of drcayman / huayixingguang

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

    

drcayman / huayixingguang example snippets



$config = ['client_id'=>'','client_secret'=>'','url'=>''];
$obj = new \Drcayman\Huayixingguang\ProductsObj\ProductsList();
$obj->page = '1';
$lite = new \Drcayman\Huayixingguang\Lite($config);
var_dump($lite->exec($obj));


$config = ['client_id'=>'','client_secret'=>'','url'=>''];
$obj = new \Drcayman\Huayixingguang\ProductsObj\Products();
$obj->id = '201795428763';
$lite = new \Drcayman\Huayixingguang\Lite($config);
var_dump($lite->getProducts($obj));


$config = ['client_id'=>'','client_secret'=>'','url'=>''];
$obj = new \Drcayman\Huayixingguang\OrderObj\CreateOrder();
$obj-> product_number  = '201703172489';
$obj-> partner_order_number='283773';
$obj-> idnumber ='320721199107024623';
$obj-> arrival_date ='2018-09-30';
$obj-> name='张三';
$obj-> tel='13013838820';
$obj-> line_items = [['variant_number'=>'20178974630521','quantity'=>1]];
$lite = new \Drcayman\Huayixingguang\Lite($config);
var_dump($lite->exec($obj));


$config = ['client_id'=>'','client_secret'=>'','url'=>''];
$obj = new \Drcayman\Huayixingguang\OrderObj\CheckOrder();
$obj-> order_number  = 'A8731221796';
$obj-> partner_order_number = '283773';
$lite = new \Drcayman\Huayixingguang\Lite($config);
var_dump($lite->exec($obj));


$config = ['client_id'=>'','client_secret'=>'','url'=>''];
$obj = new \Drcayman\Huayixingguang\OrderObj\RefundOrder();
$obj-> order_number  = 'A8731221796';
$obj-> line_items = [['variant_number'=>'20178974630521','quantity'=>1]];
$lite = new \Drcayman\Huayixingguang\Lite($config);