- PHP >= 7.2
- Composer
$ composer require "gather/jtar:dev-main" -vvv
基本使用:
<?php
use Gather\Factory;
$config = [
'tk' => [
'miao_you_quan' => [
'apkey' => '',
'tbname' => '',
'pid' => '',
]
],
];
try {
$result = Factory::collect($config)->tk_product->productLinkId(627430191595,'2702510978');
var_dump($result);
}catch (Exception $exception){
// 打印日志
$exception->getMessage();
}
MIT