mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
fix: 更新项目配置描述
This commit is contained in:
parent
0e70c7fcd7
commit
3fc888a1ac
@ -20,6 +20,29 @@ use WeChat\Exceptions\InvalidArgumentException;
|
|||||||
use WeChat\Exceptions\InvalidResponseException;
|
use WeChat\Exceptions\InvalidResponseException;
|
||||||
use WeChat\Exceptions\LocalCacheException;
|
use WeChat\Exceptions\LocalCacheException;
|
||||||
|
|
||||||
|
// =====================================================
|
||||||
|
// 配置缓存处理函数 ( 适配其他环境 )
|
||||||
|
// -----------------------------------------------------
|
||||||
|
// 数据缓存 (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;
|
||||||
|
// },
|
||||||
|
// ];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 网络请求支持
|
* 网络请求支持
|
||||||
* Class Tools
|
* Class Tools
|
||||||
@ -34,14 +57,14 @@ class Tools
|
|||||||
public static $cache_path = null;
|
public static $cache_path = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 缓存写入操作
|
* 缓存读写配置
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
public static $cache_callable = [
|
public static $cache_callable = [
|
||||||
'set' => null, // 写入缓存
|
'set' => null, // 写入缓存 ($name,$value='',$expired=3600):string
|
||||||
'get' => null, // 获取缓存
|
'get' => null, // 获取缓存 ($name):mixed|null
|
||||||
'del' => null, // 删除缓存
|
'del' => null, // 删除缓存 ($name):boolean
|
||||||
'put' => null, // 写入文件
|
'put' => null, // 写入文件 ($name,$content):string
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -67,7 +90,7 @@ class Tools
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取输入对象
|
* 获取输入对象
|
||||||
* @return false|mixed|string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function getRawInput()
|
public static function getRawInput()
|
||||||
{
|
{
|
||||||
@ -78,6 +101,16 @@ class Tools
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置输入内容
|
||||||
|
* @param string $rawInput
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public static function setRawInput($rawInput)
|
||||||
|
{
|
||||||
|
$GLOBALS['HTTP_RAW_POST_DATA'] = $rawInput;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 根据文件后缀获取文件类型
|
* 根据文件后缀获取文件类型
|
||||||
* @param string|array $ext 文件后缀
|
* @param string|array $ext 文件后缀
|
||||||
@ -353,7 +386,8 @@ class Tools
|
|||||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
|
||||||
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
|
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
|
||||||
list($content) = [curl_exec($curl), curl_close($curl)];
|
$content = curl_exec($curl);
|
||||||
|
curl_close($curl);
|
||||||
// 清理 CURL 缓存文件
|
// 清理 CURL 缓存文件
|
||||||
if (!empty(self::$cache_curl)) foreach (self::$cache_curl as $key => $file) {
|
if (!empty(self::$cache_curl)) foreach (self::$cache_curl as $key => $file) {
|
||||||
Tools::delCache($file);
|
Tools::delCache($file);
|
||||||
|
@ -14,7 +14,13 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
// 配置缓存处理函数
|
// =====================================================
|
||||||
|
// 配置缓存处理函数 ( 适配其他环境 )
|
||||||
|
// -----------------------------------------------------
|
||||||
|
// 数据缓存 (set|get|del) 操作可以将缓存写到任意位置或Redis
|
||||||
|
// 文件缓存 (put) 只能写在本地服务器,还需要返回可读的文件路径
|
||||||
|
// 未配置自定义缓存处理机制时,默认在 cache_path 写入文件缓存
|
||||||
|
// // =====================================================
|
||||||
// \WeChat\Contracts\Tools::$cache_callable = [
|
// \WeChat\Contracts\Tools::$cache_callable = [
|
||||||
// 'set' => function ($name, $value, $expired = 360) {
|
// 'set' => function ($name, $value, $expired = 360) {
|
||||||
// var_dump(func_get_args());
|
// var_dump(func_get_args());
|
||||||
@ -27,6 +33,7 @@
|
|||||||
// },
|
// },
|
||||||
// 'put' => function ($name) {
|
// 'put' => function ($name) {
|
||||||
// var_dump(func_get_args());
|
// var_dump(func_get_args());
|
||||||
|
// return $filePath;
|
||||||
// },
|
// },
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
|
@ -14,6 +14,29 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
// | 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 = <<<CERT
|
$certPublic = <<<CERT
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
你的微信商户证书公钥内容
|
你的微信商户证书公钥内容
|
||||||
|
@ -14,7 +14,31 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/WeChatDeveloper
|
// | 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;
|
||||||
|
// },
|
||||||
|
// ];
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'appid' => '', // 企业ID
|
'appid' => '', // 企业ID
|
||||||
'appsecret' => '', // 应用的凭证密钥
|
'appsecret' => '', // 应用的凭证密钥
|
||||||
|
'cache_path' => '', // 配置缓存目录
|
||||||
];
|
];
|
23
readme.md
23
readme.md
@ -114,6 +114,29 @@ include "您的目录/WeChatDeveloper/include.php";
|
|||||||
2.1 接口实例所需参数
|
2.1 接口实例所需参数
|
||||||
|
|
||||||
```php
|
```php
|
||||||
|
// =====================================================
|
||||||
|
// 配置缓存处理函数 ( 适配其他环境 )
|
||||||
|
// -----------------------------------------------------
|
||||||
|
// 数据缓存 (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;
|
||||||
|
// },
|
||||||
|
// ];
|
||||||
|
|
||||||
$config = [
|
$config = [
|
||||||
'token' => 'test',
|
'token' => 'test',
|
||||||
'appid' => 'wx60a43dd8161666d4',
|
'appid' => 'wx60a43dd8161666d4',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user