Home >Backend Development >PHP Tutorial >PHP CI框架怎么除去缓存

PHP CI框架怎么除去缓存

WBOY
WBOYOriginal
2016-06-13 11:35:161254browse

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

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

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

Statement:
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