Answer the question
In order to leave comments, you need to log in
Yii2 how to add many records to a table?
Good afternoon,
I am doing a multi-upload of pictures.
I got an array of pictures... I save them to a folder and try to do a mass addition to the database using the same foreach.
//какие-то штуки :-)
foreach ($model->image as $file) {
//какие-то штуки :-)
$file->saveAs($dir . $filename . '.' . $extension);
$model->album_id = 1;
$model->timestamp = time();
$model->save();
}
Answer the question
In order to leave comments, you need to log in
You overwrite because.
This will overwrite the entry:
$db = ModelActiveRecord::findOne();
$db->entry = 123;
$db->save();
$db = new ModelActiveRecord()
$db->entry = 123;
$db->save();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question