ThinkPHP5 清除runtime缓存文件

/**  
 * 清除模版缓存 不删除cache目录  
 */  
public function clear_sys_cache() {  
Cache::clear();  
$this->success( '清除成功', 'index/index' );  
}  
/**  
 * 清除模版缓存 不删除 temp目录  
 */  
public function clear_temp_ahce() {  
array_map( 'unlink', glob( TEMP_PATH.DS.'.php' ) );  
$this->success( '清除成功', 'index/index' );  
}  
/**  
 * 清除日志缓存 不删出log目录  
 */  
public function clear_log_chache() {  
$path = glob( LOG_PATH.'/' );  
foreach ($path as $item) {  
array_map( 'unlink', glob( $item.DS.'.' ) );  
rmdir( $item );  
}  
$this->success( '清除成功', 'index/index' );  
}  
/**  
 * 清除glob  
 */  
function clert_temp_cache()  
{  
    array_map('unlink', glob(TEMP_PATH . '/*.php'));  
    rmdir(TEMP_PATH);  
}  

 

posted @ 2018-03-12 16:09  Mr丶Cheng  阅读(4124)  评论(0编辑  收藏  举报