From f01ac5dafc85cb408fd3e0bafc462437785ae178 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 16 May 2018 13:48:16 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E4=BF=AE=E6=94=B9=E5=BE=AE?= =?UTF-8?q?=E4=BF=A1=E8=B4=A6=E5=8D=95=E4=B8=8B=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Pay.php | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 84d7d40..3f40508 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -202,14 +202,23 @@ class Pay /** * 下载对账单 - * @param array $options - * @return array + * @param array $options 静音参数 + * @param null|string $outType 输出类型 + * @return bool|string * @throws InvalidResponseException */ - public function billDownload(array $options) + public function billDownload(array $options, $outType = null) { - $url = 'https://api.mch.weixin.qq.com/pay/downloadbill'; - return $this->callPostApi($url, $options); + $this->params->set('sign_type', 'MD5'); + $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); }