我正在使用 CodeIgniter 3。我只需要知道到目前为止是否有一个“where”条件添加到查询生成器中。
我正在调用从数据库中删除行的“删除”函数,并且可以在调用该函数之前添加 where 条件。像这样的东西:
public function delete()
{
// Here I need to know if where condition added to the db class
$this->db
->where('field', 1)
->delete('my_table');
}
public function main()
{
$this->db->where('field2', 2);
$this->delete();
}