ComposerUpdate

This commit is contained in:
Anyon 2020-04-26 11:29:36 +08:00
parent 21403c3318
commit 8f90662a29
9 changed files with 37 additions and 21 deletions

View File

@ -53,8 +53,8 @@ class Plugs extends Controller
$this->success('网站缓存加速成功!');
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $e) {
$this->error($e->getMessage());
} catch (\Exception $exception) {
$this->error($exception->getMessage());
}
}
@ -74,8 +74,8 @@ class Plugs extends Controller
$this->success('清理网站缓存成功!');
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $e) {
$this->error($e->getMessage());
} catch (\Exception $exception) {
$this->error($exception->getMessage());
}
}

View File

@ -32,9 +32,7 @@ class Update extends Controller
{
$this->file = $this->app->getRootPath() . decode(input('encode', '0'));
if (file_exists($this->file)) {
$this->success('读取文件成功!', [
'content' => base64_encode(file_get_contents($this->file)),
]);
$this->success('读取文件成功!', ['content' => base64_encode(file_get_contents($this->file))]);
} else {
$this->error('读取文件内容失败!');
}

11
composer.lock generated
View File

@ -962,16 +962,16 @@
},
{
"name": "zoujingli/wechat-developer",
"version": "v1.2.20",
"version": "v1.2.21",
"source": {
"type": "git",
"url": "https://github.com/zoujingli/WeChatDeveloper.git",
"reference": "9afb0a29c658d52dc7b9d46d2f848602124936b7"
"reference": "5cf008c37471f775ae28a23fd1ac06c91eac682f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/9afb0a29c658d52dc7b9d46d2f848602124936b7",
"reference": "9afb0a29c658d52dc7b9d46d2f848602124936b7",
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/5cf008c37471f775ae28a23fd1ac06c91eac682f",
"reference": "5cf008c37471f775ae28a23fd1ac06c91eac682f",
"shasum": "",
"mirrors": [
{
@ -988,6 +988,7 @@
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"php": ">=5.4"
},
"type": "library",
@ -1023,7 +1024,7 @@
"wechatpay",
"wepay"
],
"time": "2020-03-14T06:58:18+00:00"
"time": "2020-04-26T03:12:37+00:00"
}
],
"packages-dev": [],

View File

@ -989,17 +989,17 @@
},
{
"name": "zoujingli/wechat-developer",
"version": "v1.2.20",
"version_normalized": "1.2.20.0",
"version": "v1.2.21",
"version_normalized": "1.2.21.0",
"source": {
"type": "git",
"url": "https://github.com/zoujingli/WeChatDeveloper.git",
"reference": "9afb0a29c658d52dc7b9d46d2f848602124936b7"
"reference": "5cf008c37471f775ae28a23fd1ac06c91eac682f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/9afb0a29c658d52dc7b9d46d2f848602124936b7",
"reference": "9afb0a29c658d52dc7b9d46d2f848602124936b7",
"url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/5cf008c37471f775ae28a23fd1ac06c91eac682f",
"reference": "5cf008c37471f775ae28a23fd1ac06c91eac682f",
"shasum": "",
"mirrors": [
{
@ -1016,9 +1016,10 @@
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"php": ">=5.4"
},
"time": "2020-03-14T06:58:18+00:00",
"time": "2020-04-26T03:12:37+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-04-26 10:47:27
// This file is automatically generated at:2020-04-26 11:29:22
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -56,6 +56,7 @@ use WeChat\Exceptions\InvalidInstanceException;
* @method \WeMini\Delivery WeMiniDelivery($options = []) static 小程序即时配送
* @method \WeMini\Guide WeMiniGuide($options = []) static 小程序导购助手
* @method \WeMini\Image WeMiniImage($options = []) static 小程序图像处理
* @method \WeMini\Live WeMiniLive($options = []) static 小程序直播接口
* @method \WeMini\Logistics WeMiniLogistics($options = []) static 小程序物流助手
* @method \WeMini\Message WeMiniMessage($options = []) static 小程序动态消息
* @method \WeMini\Newtmpl WeMiniNewtmpl($options = []) static 小程序订阅消息
@ -85,7 +86,7 @@ class We
* 定义当前版本
* @var string
*/
const VERSION = '1.2.20';
const VERSION = '1.2.21';
/**
* 静态配置

View File

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

View File

@ -39,7 +39,7 @@ class Bill extends BasicWePay
$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 (is_array($jsonData = Tools::xml3arr($result))) {
if ($jsonData['return_code'] !== 'SUCCESS') {
throw new InvalidResponseException($jsonData['return_msg'], '0');
}

View File

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