增加运行时缓存路径配置

This commit is contained in:
邹景立 2023-04-28 19:58:55 +08:00
parent 53f3dce3dd
commit 8630e29773
2 changed files with 6 additions and 0 deletions

View File

@ -103,6 +103,10 @@ abstract class BasicWePay
throw new InvalidArgumentException('Failed to parse certificate public key'); 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'])) { // if (!empty($options['sp_appid'])) {
// $this->config['sp_appid'] = $options['sp_appid']; // $this->config['sp_appid'] = $options['sp_appid'];

View File

@ -39,4 +39,6 @@ return [
'cert_public' => $certPublic, 'cert_public' => $certPublic,
// 必填,微信商户证书私钥,支持证书内容或文件路径 // 必填,微信商户证书私钥,支持证书内容或文件路径
'cert_private' => $certPrivate, 'cert_private' => $certPrivate,
// 可选,运行时的文件缓存路径
'cache_path' => ''
]; ];