//引入
usethink\cache
;//使用
$options=[
// 快取型別為file
'type'
=>
'file'
,// 快取有效期為永久有效
'expire'
=>0,
//快取字首
'prefix'
=>
'think'
,// 指定快取目錄
'path'
=>
.'runtime/cache/',]
; cache:
:connect
($options);
if(!cache:
:has
($this
->
lightid))
else
//刪除
$options=[
// 快取型別為file
'type'
=>
'file'
,// 快取有效期為永久有效
'expire'
=>0,
//快取字首
'prefix'
=>
'think'
,// 指定快取目錄
'path'
=>
.'runtime/cache/',]
; cache:
:connect
($options);
cache::rm
($goodordern
['lightid'])
;//刪除快取可進行下乙個動作
tp5快取應用例項
這裡的快取型別是file 1 第乙個例子 這裡舉例獲取 的文章導航,當使用者第一次訪問時是從資料庫裡查詢資料,然後生成快取檔案,再次訪問時直接從快取裡取資料 這也是最常見的快取應用 主頁的控制器 public function index else 省略其他資料 無論是更新,新增還是刪除,如果有快取...
TP5使用模型查詢資料
前提 引入model 1.get 方法,引數為 主鍵值 res user get 1 toarray 方法是將 get的值,轉為陣列 res res toarray get 方法還支援閉包 res user get function query res res toarray dump res 2....
tp5驗證器的使用
1.定義驗證器模組 use think validate class admin extends validate 2.控制呼叫 validate validate admin 助手函式匯入1二 驗證器實際使用簡化合併及場景呼叫 1.簡化 驗證器規則和提示資訊合併顯示 protected rule ...