Answer the question
In order to leave comments, you need to log in
How to add the name of the uploaded file to the database in Yii2?
I'm uploading a file. In the controller I wrote:
$model->file = UploadedFile::getInstance($model, 'file');
if($model->uploadFile()) {
return;
}
public function uploadFile() {
if ($model->validate()) {
$path = Yii::getAlias('@webroot/upload/global/books/');
$model->file->saveAs($path.$model->file->baseName.'.'.$model->file->extension);
return;
} else { return false; }
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question