Home > PHP Framework > ThinkPHP > body text

How thinkphp uses redis

爱喝马黛茶的安东尼
Release: 2019-08-22 16:09:37
Original
14789 people have browsed it

How thinkphp uses redis

How to use redis in thinkphp5?

1. Set the application configuration file config.php

How thinkphp uses redis

type can be many categories: File, Redis, etc.

How thinkphp uses redis

Related recommendations: "ThinkPHP Tutorial"

2.thinkphp5 uses redis

New 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();
    }
}
Copy after login

3. Front-end display

New application/index/view/index.html

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>index/index</title>
</head>
<body>
    {$data}
</body>
</html>
Copy after login

Output:

klc123
Copy after login

PS: When using redis, be sure to enable the redis server.

The above is the detailed content of How thinkphp uses redis. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!