Download the PHP package opensdk/qianzhu without Composer
On this page you can find all versions of the php package opensdk/qianzhu. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package qianzhu
opensdk-qianzhu
介绍
本类库是对千猪开放平台API的封装
使用示例
require 'vendor/autoload.php';
use OpenSDK\QianZhu\Client;
use OpenSDK\QianZhu\Requests\KfcOrdersPagedQueryGetRequest;
$c = new Client();
$c->appKey = $this->appKey;
$c->appSecret = $this->appSecret;
$c->gatewayUrl = $this->url;
$req = new KfcOrdersPagedQueryGetRequest();
$req->setPageIndex(1);
$req->setPageSize(10);
$req->setUpdateTimeBeginTime("2020-04-20 00:00:00");
$req->setUpdateTimeEndTime("2020-04-27 00:00:00");
$c->execute($req);
$response = $c->result();
if(isset($response['status']) && $response['status'] == '0000'){
}
var_dump($response);exit;All versions of qianzhu with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0.0
The package opensdk/qianzhu contains the following files
Loading the files please wait ...