首页 > php框架 > ThinkPHP > thinkphp redis用法是什么

thinkphp redis用法是什么

爱喝马黛茶的安东尼
发布: 2019-08-26 15:59:49
原创
3369 人浏览过

thinkphp redis用法是什么

thinkphp5如何使用redis?

1.设置应用配置文件config.php

q.jpg

type可以是很多分类File、Redis等等。

w.jpg

相关推荐:《ThinkPHP教程

2.thinkphp5使用redis

新建application/index/controller/index.php

<?php
namespace app\index\controller;
use think\Controller;
use think\Cache;
class Index extends Controller
{
    public function index()
    {    
        $han = new Cache;
        // halt($han);
        $han->set(&#39;name&#39;,&#39;klc123&#39;);
        $data = $han->get(&#39;name&#39;);
        $this->assign(&#39;data&#39;,$data);
        return view();
    }
}
登录后复制

3.前端显示

新建application/index/view/index.html

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>index/index</title>
</head>
<body>
    {$data}
</body>
</html>
登录后复制

输出:

klc123
登录后复制

PS:使用redis,注意开启redis服务器。

以上是thinkphp redis用法是什么的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板