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);  
相關文章
相關標籤/搜索