🌈 搜索
📅 最后修改于: 2022-03-11 14:54:25.933000 🧑 作者: Mango
$this->db->where('user_id',$id); $q = $this->db->get('profile'); if ( $q->num_rows() > 0 ) { $this->db->where('user_id',$id); $this->db->update('profile',$data); } else { $this->db->set('user_id', $id); $this->db->insert('profile',$data); }