Home »
MCQs »
CodeIgniter MCQs
Which of the following removes cache files connected with a certain page?
46. Which of the following removes cache files connected with a certain page?
- $this->db->cache_remove()
- $this->db->cache_erase()
- $this->db->cache_del()
- $this->db->cache_delete()
Answer: D) $this->db->cache_delete()
Explanation:
$this->db->cache_delete() removes cache files connected with a certain page.