Update Database Field Error CodeIgniter

前端 未结 5 581
悲&欢浪女
悲&欢浪女 2021-02-04 08:18

I am getting the following error message in CodeIgniter 2.1:

A PHP Error was encountered

Severity: Notice

Message: Array to string conversion

Filename: databa         


        
5条回答
  •  北海茫月
    2021-02-04 08:58

    I always feel a little dirty for doing this but you can always just suppress errors for that one line of code too!

    function update2($data){
       @$this->db->update_batch('users',$data, "id");
    }
    

    Of course the proper thing to do is upgrade to 2.1.3 (haven't tested or looked so I'll assume it's fixed.)

提交回复
热议问题