PHP code example of yijie / easytbk
1. Go to this page and download the library: Download yijie/easytbk 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/ */
yijie / easytbk example snippets
use Yijie\EasyTBK\Factory;
use Yijie\EasyTBK\TaoBao\Request\TbkItemInfoGetRequest;
$client = Factory::taobao ();
$req = new TbkItemInfoGetRequest;
$req->setNumIids ($numIids);
return $client->execute ($req);
bash
php artisan vendor:publish --provider "Yijie\EasyTBK\ServiceProvider"