第一个条件有效,如果为1,则将标志设置为0
但单击“打孔”按钮后无法将其恢复为1。这是模型函数。称为login_info_model,它存储打孔和打孔的日期和时间。
function login_info_model($id)
{
$reg = "%Y:%m:%d:%h:%i";
$data = array(
'logindt' => mdate($reg) ,
'userid' => $id
);
$qry = $this->db->insert('registry', $data);
if ($qry) {
$on = array(
'flag' => 1
);
$off = array(
'flag' => 0
);
$flg = $this->db->get('users', 'flag');
if ($flg == 1) {
$this->db->where('id', $id);
$this->db->where('flag', 1);
$this->db->update('users', $off);
} else {
$this->db->where('id', $id);
$this->db->where('flag', 0);
$this->db->update('users', $on);
}
return $qry;
}
}
最佳答案
这样就解决了问题。
$this->db->select('flag');
$this->db->from('users');
$this->db->where('id',$id);
$flaggg=$this->db->get();
$flagg=$flaggg->row_array();
$flg=implode("",$flagg);
关于php - 如何在codeigniter中为用户打入和打出设置标志?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33432281/