tp5.0清除缓冲
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5.0清除缓冲相关的知识,希望对你有一定的参考价值。
namespace app\admin\controller;use think\Cache;
class Caches extends Base{
public function clear_sys_cache() {
Cache::clear();
$this->success( ‘清除成功‘, ‘admin/entry/index‘ );
}
/**
* 清除模版缓存 不删除 temp目录
*/
public function clear_temp_ahce() {
array_map( ‘unlink‘, glob( TEMP_PATH.DS.‘.php‘ ) );
$this->success( ‘清除成功‘, ‘admin/entry/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( ‘清除成功‘, ‘admin/entry/index‘ );
}
//清除模板缓存
public function clert_temp_cache()
{
// array_map(‘unlink‘, glob(TEMP_PATH . ‘/*.php‘));
// rmdir(TEMP_PATH);
$a=glob(TEMP_PATH . ‘\*.php‘);
// halt($a);
if(!empty($a)){
array_map(‘unlink‘, $a);
rmdir(TEMP_PATH);
$this->success(‘清除成功:)‘,‘admin/entry/index‘);
}
// $this->success(‘清除成功:)‘,‘admin/entry/index‘);
}
}
以上是关于tp5.0清除缓冲的主要内容,如果未能解决你的问题,请参考以下文章
java缓冲字符字节输入输出流:java.io.BufferedReaderjava.io.BufferedWriterjava.io.BufferedInputStreamjava.io.(代码片段