From db5b813d872ec4a67ddd9445b713a5de27fe192d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 20 Sep 2024 14:27:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E7=BC=93=E5=AD=98?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WeChat/Contracts/Tools.php | 3 +++ _test/config.php | 3 +++ _test/pay-v3-config.php | 49 ++++++++++++++++++++------------------ _test/work-config.php | 3 +++ readme.md | 3 +++ 5 files changed, 38 insertions(+), 23 deletions(-) diff --git a/WeChat/Contracts/Tools.php b/WeChat/Contracts/Tools.php index 8d82fba..1bf1323 100644 --- a/WeChat/Contracts/Tools.php +++ b/WeChat/Contracts/Tools.php @@ -30,12 +30,15 @@ use WeChat\Exceptions\LocalCacheException; // \WeChat\Contracts\Tools::$cache_callable = [ // 'set' => function ($name, $value, $expired = 360) { // var_dump(func_get_args()); +// return $value; // }, // 'get' => function ($name) { // var_dump(func_get_args()); +// return $value; // }, // 'del' => function ($name) { // var_dump(func_get_args()); +// return true; // }, // 'put' => function ($name) { // var_dump(func_get_args()); diff --git a/_test/config.php b/_test/config.php index 31d9f63..8f298e8 100644 --- a/_test/config.php +++ b/_test/config.php @@ -24,12 +24,15 @@ // \WeChat\Contracts\Tools::$cache_callable = [ // 'set' => function ($name, $value, $expired = 360) { // var_dump(func_get_args()); +// return $value; // }, // 'get' => function ($name) { // var_dump(func_get_args()); +// return $value; // }, // 'del' => function ($name) { // var_dump(func_get_args()); +// return true; // }, // 'put' => function ($name) { // var_dump(func_get_args()); diff --git a/_test/pay-v3-config.php b/_test/pay-v3-config.php index 8d728f3..900d43c 100644 --- a/_test/pay-v3-config.php +++ b/_test/pay-v3-config.php @@ -14,29 +14,6 @@ // | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper // +---------------------------------------------------------------------- -// ===================================================== -// 配置缓存处理函数 ( 适配其他环境 ) -// ----------------------------------------------------- -// 数据缓存 (set|get|del) 操作可以将缓存写到任意位置或Redis -// 文件缓存 (put) 只能写在本地服务器,还需要返回可读的文件路径 -// 未配置自定义缓存处理机制时,默认在 cache_path 写入文件缓存 -// // ===================================================== -// \WeChat\Contracts\Tools::$cache_callable = [ -// 'set' => function ($name, $value, $expired = 360) { -// var_dump(func_get_args()); -// }, -// 'get' => function ($name) { -// var_dump(func_get_args()); -// }, -// 'del' => function ($name) { -// var_dump(func_get_args()); -// }, -// 'put' => function ($name) { -// var_dump(func_get_args()); -// return $filePath; -// }, -// ]; - $certPublic = << function ($name, $value, $expired = 360) { +// var_dump(func_get_args()); +// return $value; +// }, +// 'get' => function ($name) { +// var_dump(func_get_args()); +// return $value; +// }, +// 'del' => function ($name) { +// var_dump(func_get_args()); +// return true; +// }, +// 'put' => function ($name) { +// var_dump(func_get_args()); +// return $filePath; +// }, +// ]; + return [ // 可选,公众号APPID 'appid' => '', diff --git a/_test/work-config.php b/_test/work-config.php index b06aa84..73c4c80 100644 --- a/_test/work-config.php +++ b/_test/work-config.php @@ -24,12 +24,15 @@ // \WeChat\Contracts\Tools::$cache_callable = [ // 'set' => function ($name, $value, $expired = 360) { // var_dump(func_get_args()); +// return $value; // }, // 'get' => function ($name) { // var_dump(func_get_args()); +// return $value; // }, // 'del' => function ($name) { // var_dump(func_get_args()); +// return true; // }, // 'put' => function ($name) { // var_dump(func_get_args()); diff --git a/readme.md b/readme.md index a6bc131..96fbba4 100644 --- a/readme.md +++ b/readme.md @@ -124,12 +124,15 @@ include "您的目录/WeChatDeveloper/include.php"; // \WeChat\Contracts\Tools::$cache_callable = [ // 'set' => function ($name, $value, $expired = 360) { // var_dump(func_get_args()); +// return $value; // }, // 'get' => function ($name) { // var_dump(func_get_args()); +// return $value; // }, // 'del' => function ($name) { // var_dump(func_get_args()); +// return true; // }, // 'put' => function ($name) { // var_dump(func_get_args());