💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` //模型修改 //$obj=Test::find()->where(['id'=>10])->one(); //$obj->migration='this'; //$obj->batch=5; //$status=$obj->save(); //使用createCommand()修改 $status=\Yii::$app->db->createCommand()->update('{{%migrations}}',[ 'migration'=>'this is migration', 'batch'=>3 ],[ 'id'=>11 ])->execute(); var_dump($status); ```