mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
[更新]修改微信账单下载
This commit is contained in:
parent
a3b3b4b1c1
commit
f01ac5dafc
@ -202,14 +202,23 @@ class Pay
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 下载对账单
|
* 下载对账单
|
||||||
* @param array $options
|
* @param array $options 静音参数
|
||||||
* @return array
|
* @param null|string $outType 输出类型
|
||||||
|
* @return bool|string
|
||||||
* @throws InvalidResponseException
|
* @throws InvalidResponseException
|
||||||
*/
|
*/
|
||||||
public function billDownload(array $options)
|
public function billDownload(array $options, $outType = null)
|
||||||
{
|
{
|
||||||
$url = 'https://api.mch.weixin.qq.com/pay/downloadbill';
|
$this->params->set('sign_type', 'MD5');
|
||||||
return $this->callPostApi($url, $options);
|
$params = $this->params->merge($options);
|
||||||
|
$params['sign'] = $this->getPaySign($params, 'MD5');
|
||||||
|
$result = Tools::post('https://api.mch.weixin.qq.com/pay/downloadbill', Tools::arr2xml($params));
|
||||||
|
if (($jsonData = Tools::xml2arr($result))) {
|
||||||
|
if ($jsonData['return_code'] !== 'SUCCESS') {
|
||||||
|
throw new InvalidResponseException($jsonData['return_msg'], '0');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return is_null($outType) ? $result : $outType($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user