PHP CI框架如何除去缓存

WBOY
Release: 2016-06-23 14:22:11
Original
932 people have browsed it

如何清除缓存实现及时效果
比如:
类里的函数
public function show(){
  echo '111';
}
// 页面显示 111
但是我修改后

public function show(){
  echo '222';
}
//页面还显示 111

应该有个缓存,我看了设置配置文件,缓存也关闭了啊。为什么呢?


回复讨论(解决方案)

浏览器的缓存去掉了没有

好像好了。是浏览器的事?
现在是及时更新内容了。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template