📜  codeigniter 更新或创建 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:25.933000             🧑  作者: Mango

代码示例1
$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);
   }