(先安装redis再看php.ini里面redis扩展开了没有)
#### 1、在框架根目录config里面新建redis.php文件配置ip及端口:如下:
~~~
<?php
return [
'host' => '127.0.0.1',
'port' => '6379',
];
~~~
#### 2、在根目录extend里新建module目录,并在其里面建Redis.php文件,文件内容如下:
~~~
namespace module;
//这里容易报redis404 看看use对了没有
class Redis extends \Redis
{
public static function redis() {
$con = new \Redis();
$con->connect(config('redis.host'), config('redis.port'), 5);
return $con;
}
}
~~~
### 3、在项目根目录thinkphp目录里helper.php里设置redis助手函数,加入如下内容:
~~~
if (!function_exists('redis')) {
/**
* 获取容器对象实例
* @return Container
*/
function redis()
{
return \module\Redis::redis();
}
}
~~~
### 4、在控制器里使用:
~~~
redis()->set('xxx',3);
redis()-->get('xxx')
~~~
- 公共页面js
- 公共页面添加js
- 公共页面编辑js
- 公共页面列表js
- 文件上传方法
- 分类相关
- 获取ip
- Response类
- Curl类
- JWT
- tp5.1下redis的使用
- tp5.1使用RabbitMQ
- tp5.1+easywechat相关
- tp5.1+easywechat实现小程序登录
- uniapp页面
- tp控制器
- git相关操作
- php文件操作
- 大文件上传
- laravel队列
- 1.安装laravel并进行相关配置
- nginx反向代理解决微信公众号,小程序,微信支付域名限制,回调
- readme
- do
- 杂项
- cas单点登录
- tp6跨域(中间件不起作用版)
- php算法
- 冒泡排序
- knn算法
- 使用es
- 使用mongdb
- tp6+rabbirmq
- 一些问题
- php文件操作/文件操作的一些方法
- 客户端请求相关