久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      yii怎么更新數(shù)據(jù)

      yii怎么更新數(shù)據(jù)

      yii怎么更新數(shù)據(jù)

      1、使用update()

      //runValidation boolen 是否通過(guò)validate()校驗(yàn)字段 默認(rèn)為true  //attributeNames array 需要更新的字段  $model->update($runValidation , $attributeNames);

      2、使用updateAll();

      相關(guān)文章教程推薦:yii教程

      //update customer set status = 1 where status = 2 Customer::updateAll(['status' => 1], 'status = 2');   //update customer set status = 1 where status = 2 and uid = 1; Customer::updateAll(['status' => 1], ['status'=> '2','uid'=>'1']);

      3、使用save();

      $customer = Customer::find()     ->where(['id' => 1])     ->one(); $customer->name = 'zhangsan'; $customer->save();

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)