ThinkPHP5 清除runtime缓存文件

Posted 2420355482

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP5 清除runtime缓存文件相关的知识,希望对你有一定的参考价值。

 

  1. /**  
  2.  * 清除模版缓存 不删除cache目录  
  3.  */  
  4. public function clear_sys_cache() {  
  5. Cache::clear();  
  6. $this->success( \'清除成功\', \'index/index\' );  
  7. }  
  8. /**  
  9.  * 清除模版缓存 不删除 temp目录  
  10.  */  
  11. public function clear_temp_ahce() {  
  12. array_map( \'unlink\', glob( TEMP_PATH.DS.\'.php\' ) );  
  13. $this->success( \'清除成功\', \'index/index\' );  
  14. }  
  15. /**  
  16.  * 清除日志缓存 不删出log目录  
  17.  */  
  18. public function clear_log_chache() {  
  19. $path = glob( LOG_PATH.\'/\' );  
  20. foreach ($path as $item) {  
  21. array_map( \'unlink\', glob( $item.DS.\'.\' ) );  
  22. rmdir( $item );  
  23. }  
  24. $this->success( \'清除成功\', \'index/index\' );  
  25. }  
  26. /**  
  27.  * 清除glob  
  28.  */  
  29. function clert_temp_cache()  
  30. {  
  31.     array_map(\'unlink\', glob(TEMP_PATH . \'/*.php\'));  
  32.     rmdir(TEMP_PATH);  
 
 
标签: tp5

以上是关于ThinkPHP5 清除runtime缓存文件的主要内容,如果未能解决你的问题,请参考以下文章

ThinkPHP清除缓存Runtime文件

thinkphp文件缓存怎么找到缓存文件

thinkphp5下载文件对原文件有5分钟缓存

关于Thinkphp的Mysql问题~

如何清除 System.Runtime.Caching.MemoryCache

Thinkphp5/FastAdmin 关于后台左侧菜单的生成笔记