thinkphp5에서 redis를 어떻게 사용하나요?
1. 애플리케이션 구성 파일을 config.php
설정합니다. 유형은 파일, 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('name','klc123'); $data = $han->get('name'); $this->assign('data',$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 중국어 웹사이트의 기타 관련 기사를 참조하세요!