RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
tp5.0清除缓冲

namespace app\admin\controller;
use think\Cache;
class Caches extends Base{
public function clear_sys_cache() {

创新互联专注于企业网络营销推广、网站重做改版、南阳网站定制设计、自适应品牌网站建设、H5建站商城开发、集团公司官网建设、外贸营销网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为南阳等各大城市提供网站开发制作服务。

    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清除缓冲
网址分享:http://scpingwu.com/article/jdicgj.html