如何在codeigniter 3获取结果之前保存数据库查询

时间:2016-01-22 02:42:08

标签: php mysql codeigniter codeigniter-3

我使用这些函数来获取数据库结果。 我想保存所有“select”,“where”...等查询并加载其他功能以便使用

$this->select('title, content, date');
$this->db->where('name', $name);
// Save the query here...

// Do other query
$this->db->select('name');
$query = $this->db->get('other_table');

// Load the query from the save point here
$query2 = $this->db->get('mytable');

0 个答案:

没有答案