>  기사  >  PHP 프레임워크  >  thinkphp가 redis를 사용하는 방법

thinkphp가 redis를 사용하는 방법

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼원래의
2019-08-22 16:09:3714934검색

thinkphp가 redis를 사용하는 방법

thinkphp5에서 redis를 어떻게 사용하나요?

1. 애플리케이션 구성 파일을 config.php

thinkphp가 redis를 사용하는 방법

설정합니다. 유형은 파일, Redis 등 다양할 수 있습니다.

thinkphp가 redis를 사용하는 방법

관련 권장 사항: "ThinkPHP 튜토리얼"

2. thinkphp5는 redis

새 애플리케이션/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을 사용합니다.3. /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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.