From 8630e29773aae92b1ce98f47f16a7c11be9ea4c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 28 Apr 2023 19:58:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=BF=90=E8=A1=8C=E6=97=B6?= =?UTF-8?q?=E7=BC=93=E5=AD=98=E8=B7=AF=E5=BE=84=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WePayV3/Contracts/BasicWePay.php | 4 ++++ _test/pay-v3-config.php | 2 ++ 2 files changed, 6 insertions(+) diff --git a/WePayV3/Contracts/BasicWePay.php b/WePayV3/Contracts/BasicWePay.php index 95b5aa9..36a3f9e 100644 --- a/WePayV3/Contracts/BasicWePay.php +++ b/WePayV3/Contracts/BasicWePay.php @@ -103,6 +103,10 @@ abstract class BasicWePay throw new InvalidArgumentException('Failed to parse certificate public key'); } + if (!empty($options['cache_path'])) { + Tools::$cache_path = $options['cache_path']; + } + // 服务商参数支持 // if (!empty($options['sp_appid'])) { // $this->config['sp_appid'] = $options['sp_appid']; diff --git a/_test/pay-v3-config.php b/_test/pay-v3-config.php index 5182430..21faedf 100644 --- a/_test/pay-v3-config.php +++ b/_test/pay-v3-config.php @@ -39,4 +39,6 @@ return [ 'cert_public' => $certPublic, // 必填,微信商户证书私钥,支持证书内容或文件路径 'cert_private' => $certPrivate, + // 可选,运行时的文件缓存路径 + 'cache_path' => '' ]; \ No newline at end of file