增加xml解析方式

This commit is contained in:
Anyon 2020-04-26 11:08:57 +08:00
parent e8161351be
commit d42e8836f7
4 changed files with 18 additions and 2 deletions

2
We.php
View File

@ -86,7 +86,7 @@ class We
* 定义当前版本 * 定义当前版本
* @var string * @var string
*/ */
const VERSION = '1.2.20'; const VERSION = '1.2.21';
/** /**
* 静态配置 * 静态配置

View File

@ -164,6 +164,21 @@ class Tools
return json_decode(json_encode($data), true); return json_decode(json_encode($data), true);
} }
/**
* 解析XML文本内容
* @param string $xml
* @return boolean|mixed
*/
public static function xml3arr($xml)
{
$parser = xml_parser_create();
if (!xml_parse($parser, $xml, true)) {
xml_parser_free($parser);
return false;
}
return json_decode(json_encode(simplexml_load_string($xml)), true);
}
/** /**
* 数组转xml内容 * 数组转xml内容
* @param array $data * @param array $data

View File

@ -39,7 +39,7 @@ class Bill extends BasicWePay
$params = $this->params->merge($options); $params = $this->params->merge($options);
$params['sign'] = $this->getPaySign($params, 'MD5'); $params['sign'] = $this->getPaySign($params, 'MD5');
$result = Tools::post('https://api.mch.weixin.qq.com/pay/downloadbill', Tools::arr2xml($params)); $result = Tools::post('https://api.mch.weixin.qq.com/pay/downloadbill', Tools::arr2xml($params));
if (($jsonData = Tools::xml2arr($result))) { if (is_array($jsonData = Tools::xml3arr($result))) {
if ($jsonData['return_code'] !== 'SUCCESS') { if ($jsonData['return_code'] !== 'SUCCESS') {
throw new InvalidResponseException($jsonData['return_msg'], '0'); throw new InvalidResponseException($jsonData['return_msg'], '0');
} }

View File

@ -21,6 +21,7 @@
], ],
"require": { "require": {
"php": ">=5.4", "php": ">=5.4",
"ext-xml": "*",
"ext-json": "*", "ext-json": "*",
"ext-curl": "*", "ext-curl": "*",
"ext-bcmath": "*", "ext-bcmath": "*",