Home>Article>PHP Framework> thinkphp5 clear cache, template cache and log cache

thinkphp5 clear cache, template cache and log cache

藏色散人
藏色散人 forward
2020-08-11 13:39:28 3864browse

The following tutorial column ofthinkphp frameworkwill introduce to you how to clear the cache, template cache and log cache of thinkphp5. I hope it will be helpful to friends in need!

thinkphp5 clear cache, template cache and log cache

Write directly into the cache module to generate the controller

namespace app\cache\controller; use think\Controller; use think\Cache;

The specific method is as follows:

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

The main php functions used are:

  • array_map ( callback , array1 , array... )

array_map --Apply callback to each element of the array Drop function

Parameter 1: Drop function, applied to each element in each array

Parameter 2: Array, convenient for running the function set by parameter 1

Return Array, containing all elements of array1 after processing by the callback function.

  • glob(pattern,flags)

##glob — Find file paths matching pattern

Parameter 1: required. Specifies the search mode.

Parameter 2: Optional. Specifies special settings. I won’t go into too much detail here because it won’t be used here.

The above is the detailed content of thinkphp5 clear cache, template cache and log cache. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete