我正在开发一个 CodeIgniter 项目,我必须在其中更改记录状态。实际上,我只需要更新那些 id 是/在 ids 字符串中的记录。
目前,我的代码只更新了一条记录。我的模型函数是:
public function markUnRead() {
$ids = 1,2,3,4,5,6;
$update = array('status' => 0);
$this->db->where_in('id', $ids);
$this->db->update('tableName',$update);
if ($this->db->affected_rows() > 0) {
return true;
} else {
return false;
}
}
请有人帮助我。