From eaa77465809dd8dbf9ae9bee3e23107af28d6d85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Fri, 13 Mar 2015 11:27:02 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20=E8=87=AA=E5=AE=9A=E4=B9=89=E7=BC=93?= =?UTF-8?q?=E5=AD=98=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 自定义缓存.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/自定义缓存.md b/自定义缓存.md index 0179d2f..409be00 100644 --- a/自定义缓存.md +++ b/自定义缓存.md @@ -1,6 +1,6 @@ -微信的access_token是不能太频繁的调用的,所以需要缓存,本SDK默认使用文件缓存,文件会创建在代码运行环境的临时目录里,使用[sys_get_temp_dir()](http://php.net/manual/zh/function.sys-get-temp-dir.php) 函数获取的临时目录下。 +微信的access_token是不能太频繁的调用的,所以需要缓存,本 SDK 默认使用文件缓存,文件会创建在代码运行环境的临时目录里,使用 [sys_get_temp_dir()](http://php.net/manual/zh/function.sys-get-temp-dir.php) 函数获取的临时目录下。 -如果你需要自定义缓存方式,那么Wechat提供了以下两个方法: +如果你需要自定义缓存方式,那么 `Wechat` 提供了以下两个方法: ```php // 写入 @@ -14,4 +14,4 @@ $wechat->cache->getter(function($key){ }); ``` -当你的`getter` 没有返回缓存的值时,会重新请求access_token。 \ No newline at end of file +当你的 `getter` 没有返回缓存的值时,会重新请求 `access_token`。 \ No newline at end of file