mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
增加xml解析方式
This commit is contained in:
parent
e8161351be
commit
d42e8836f7
2
We.php
2
We.php
@ -86,7 +86,7 @@ class We
|
|||||||
* 定义当前版本
|
* 定义当前版本
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.20';
|
const VERSION = '1.2.21';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 静态配置
|
* 静态配置
|
||||||
|
@ -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
|
||||||
|
@ -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');
|
||||||
}
|
}
|
||||||
|
@ -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": "*",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user