📜  codeigniter 更新查询返回值 - PHP 代码示例

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

代码示例1
public function update_row(){
        
        $update_rows = array(
            'name' => 'rincky',
            'address' => 'India',
            'contact' => '98545785',
            'department' => 'IT',

        );
        $this->db->where('id', 1 );
        $result = $this->db->update('user', $update_rows);    
        return $result;
    }