thinkphp關閉cache的方法:1、找到convention.php和debug.php檔案;2、在debug.php中修改內容為「'TMPL_CACHE_ON' =>false,」;3、在convention. php中修改內容為「'HTML_CACHE_ON' => false,」即可。
本教學操作環境:Windows7系統、ThinkPHP5版、Dell G3電腦。
thinkphp怎麼關閉cache?
Thinkphp開發時關閉cache快取的方法
#因為在開發中需要經常修改,以便經常刪除緩存,才能看到效果。
所以為了開發的方便,可以把快取給移除。
1.找到\ThinkPHP\Common\convention.php和\ThinkPHP\Common\debug.php
2.開啟這兩個檔案找到你想要的設定即可。
debug.php中
'TMPL_CACHE_ON' =>false, // 默认开启模板缓存
convention.php中
'TMPL_CACHE_ON’ => false, // 默认开启模板编译缓存 false 的话每次都重新编译模板 'ACTION_CACHE_ON' => false, // 默认关闭Action 缓存 'HTML_CACHE_ON' => false, // 默认关闭静态缓存
推薦學習:《thinkPHP影片教學》
以上是thinkphp怎麼關閉cache的詳細內容。更多資訊請關注PHP中文網其他相關文章!