diff --git a/README.md b/README.md index ba19438..59a2e75 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ WeChatDeveloper for PHP -- * WeChatDeveloper 是基于 [wechat-php-sdk](https://github.com/zoujingli/wechat-php-sdk) 的重构,优化并完善; * 微信 SDK 运行最底要求 PHP 版本 5.4 , 建议在 PHP7 上运行以获取最佳性能; -* WeChatDeveloper 针对 access_token 失效增加了自动重试机制; +* WeChatDeveloper 针对 access_token 失效增加了自动刷新机制; * 微信的部分接口需要缓存数据在本地,因此对目录需要有写权限; * 我们鼓励大家使用 composer 来管理您的第三方库,方便后期更新操作; * WeChatDeveloper 已历经数个线上项目考验,欢迎 fork 或 star 此项目。 diff --git a/Test/config.php b/Test/config.php index 732a81f..9825b59 100644 --- a/Test/config.php +++ b/Test/config.php @@ -23,4 +23,6 @@ return [ // 配置商户支付双向证书目录 'ssl_key' => '', 'ssl_cer' => '', + // 配置缓存目录,需要拥有写权限 + 'cache_path' => '', ]; \ No newline at end of file diff --git a/WeChat/Contracts/WeChat.php b/WeChat/Contracts/WeChat.php index d6b269b..96b2f0a 100644 --- a/WeChat/Contracts/WeChat.php +++ b/WeChat/Contracts/WeChat.php @@ -69,6 +69,9 @@ class WeChat if (isset($options['GetAccessTokenCallback']) && is_callable($options['GetAccessTokenCallback'])) { $this->GetAccessTokenCallback = $options['GetAccessTokenCallback']; } + if (!empty($options['cache_path'])) { + Tools::$cache_path = $options['cache_path']; + } $this->config = new DataArray($options); } diff --git a/WeChat/Pay.php b/WeChat/Pay.php index 8303228..93c40f7 100644 --- a/WeChat/Pay.php +++ b/WeChat/Pay.php @@ -46,10 +46,17 @@ class Pay */ public function __construct(array $options) { - foreach (['appid', 'mch_id', 'mch_key'] as $key) { - if (empty($options[$key])) { - throw new InvalidArgumentException("Missing Config -- [{$key}]", '0'); - } + if (empty($options['appid'])) { + throw new InvalidArgumentException("Missing Config -- [appid]"); + } + if (empty($options['mch_id'])) { + throw new InvalidArgumentException("Missing Config -- [mch_id]"); + } + if (empty($options['mch_key'])) { + throw new InvalidArgumentException("Missing Config -- [mch_key]"); + } + if (!empty($options['cache_path'])) { + Tools::$cache_path = $options['cache_path']; } $this->config = new DataArray($options); $this->params = new DataArray([