thinkphp5如何使用redis?
1.設定應用程式設定檔config.php
#type可以是很多分類File、Redis等等。
相關推薦:《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('name','klc123'); $data = $han->get('name'); $this->assign('data',$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中文網其他相關文章!