thinkphp如何写更新缓存功能
程序员文章站
2022-05-01 17:07:25
...
thinkphp怎么写更新缓存功能
就是后台有个更新缓存的按钮 点击一下 所有用户(包括第一次访问的和 以前访问过的用户) 重新加载网页代码
------解决思路----------------------
public function ajaxUpdateCache() {
if ($this->isPost()) {
if (file_exists(RUNTIME_FILE)) {
unlink(RUNTIME_FILE); //删除RUNTIME_FILE;
}
$cachedir = RUNTIME_PATH . "/Cache/"; //Cache文件的路径;
if ($dh = opendir($cachedir)) { //打开Cache文件夹;
while (($file = readdir($dh)) !== false) { //遍历Cache目录,
unlink($cachedir . $file); //删除遍历到的每一个文件;
}
closedir($dh);
}
$tempdir = RUNTIME_PATH . "/Temp/"; //Cache文件的路径;
if ($dh = opendir($tempdir)) { //打开Cache文件夹;
while (($file = readdir($dh)) !== false) { //遍历Cache目录,
unlink($tempdir . $file); //删除遍历到的每一个文件;
}
closedir($dh);
}
$this->ajaxReturn(array("success" => true), 'JSON');
} else {
$this->ajaxReturn(array("success" => false, "msg" => "参数错误"), 'JSON');
}
}
就是后台有个更新缓存的按钮 点击一下 所有用户(包括第一次访问的和 以前访问过的用户) 重新加载网页代码
------解决思路----------------------
public function ajaxUpdateCache() {
if ($this->isPost()) {
if (file_exists(RUNTIME_FILE)) {
unlink(RUNTIME_FILE); //删除RUNTIME_FILE;
}
$cachedir = RUNTIME_PATH . "/Cache/"; //Cache文件的路径;
if ($dh = opendir($cachedir)) { //打开Cache文件夹;
while (($file = readdir($dh)) !== false) { //遍历Cache目录,
unlink($cachedir . $file); //删除遍历到的每一个文件;
}
closedir($dh);
}
$tempdir = RUNTIME_PATH . "/Temp/"; //Cache文件的路径;
if ($dh = opendir($tempdir)) { //打开Cache文件夹;
while (($file = readdir($dh)) !== false) { //遍历Cache目录,
unlink($tempdir . $file); //删除遍历到的每一个文件;
}
closedir($dh);
}
$this->ajaxReturn(array("success" => true), 'JSON');
} else {
$this->ajaxReturn(array("success" => false, "msg" => "参数错误"), 'JSON');
}
}
相关文章
相关视频
推荐阅读
-
ThinkPHP框架实现用户信息查询更新及删除功能示例
-
TP5(thinkPHP框架)实现后台清除缓存功能示例
-
为什么thinkphp每个页面都要在“查看源代码”模式下刷新才能正常看到代码更新。已经清空了缓存了啊 以前没这个有关问题
-
thinkPHP实现MemCache分布式缓存功能
-
thinkPHP实现MemCache分布式缓存功能
-
用ThinkPHP框架实现用户信息查询以及更新删除的功能
-
thinkphp怎么写更新缓存功能
-
thinkPHP实现MemCache分布式缓存功能,thinkphpmemcache
-
为什么thinkphp每个页面都要在“查看源代码”模式下刷新才能正常看到代码更新。已经清空了缓存了啊 以前没这个问题啊
-
react中由缓存功能引发版本更新的血案(react-router-cache-router缓存组件,react-router-dom5,路由鉴权修改,异步组件修改,hook,@connect)