且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何“复位”连续查询的CodeIgniter活动记录?

更新时间:2023-11-21 15:52:40

使用

$this->db->start_cache();

开始查询构建之前和

$this->db->stop_cache();

结束查询构建之后。另外,使用

After ending query building. Also, use

$this->db->flush_cache();

停止缓存后。