- /**
- * 清除模版缓存 不删除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);
- }
thinkphp5 runtime\log怎么读取,是用来存储啥的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp5 runtime\log怎么读取,是用来存储啥的相关的知识,希望对你有一定的参考价值。
如何定时清除一周前的log
log当然是存日志的。定时任务是一种方法。
但其实这个并不需要那么准确的时间,可以通过网页访问来判断上次清除的时间。
在缓存中保留一个清除log的时间,每次打开网页的时候判断一下这个时间是否大于一天或一周...,是的话就清除一周前的log。 参考技术A 可以参考linux下crontab定时任务
ThinkPHP5 清除runtime缓存文件
标签: tp5
以上是关于thinkphp5 runtime\log怎么读取,是用来存储啥的的主要内容,如果未能解决你的问题,请参考以下文章