我想在一份表格中更新一个记录。 I m使用Koha 3.0和ORM。 我的法典如下:
$photo_sel = $this->where( id , = ,$this_photo_id)
->where( user_id , = ,$user_id)
->where( is_logo , = , 0 )->find();
if ($photo_sel->loaded()) {
$this->photo_file_name = $photo;
parent::save();
}
但第一次记录每次更新。 相反,我要用这番钱来挑选和更新记录。
我如何能够做到这一点?