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

PHP CI框架怎么除去缓存

WBOY
Release: 2016-06-13 12:37:33
Original
834 people have browsed it

PHP CI框架如何除去缓存
如何清除缓存实现及时效果
比如:
类里的函数
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