false,"; 3. Modify the content in convention.php to "' HTML_CACHE_ON' => false," that's it."/> false,"; 3. Modify the content in convention.php to "' HTML_CACHE_ON' => false," that's it.">

Home >PHP Framework >ThinkPHP >How to close cache in thinkphp

How to close cache in thinkphp

藏色散人
藏色散人Original
2022-12-08 09:58:131911browse

Thinkphp method to close cache: 1. Find the convention.php and debug.php files; 2. Modify the content in debug.php to "'TMPL_CACHE_ON' =>false,"; 3. In convention.php. Just modify the content in php to "'HTML_CACHE_ON' => false,".

How to close cache in thinkphp

The operating environment of this tutorial: Windows 7 system, ThinkPHP version 5, Dell G3 computer.

How to close cache in thinkphp?

How to turn off cache during Thinkphp development

Because it needs to be modified frequently during development, the cache must be deleted frequently to see the effect.

So for the convenience of development, the cache can be removed.

1. Find \ThinkPHP\Common\convention.php and \ThinkPHP\Common\debug.php

2. Open these two files to find the settings you want.

debug.php in

'TMPL_CACHE_ON' =>false,      // 默认开启模板缓存

convention.php in

'TMPL_CACHE_ON’ => false, // 默认开启模板编译缓存 false 的话每次都重新编译模板
'ACTION_CACHE_ON' => false,  // 默认关闭Action 缓存
'HTML_CACHE_ON'  => false,  // 默认关闭静态缓存

Recommended learning: "thinkPHP Video Tutorial"

The above is the detailed content of How to close cache in thinkphp. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn