3

我有一个表格

  <?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]); ?>
 <?php echo $form->field($userformmodel, 'user_image')->fileInput(); ?>
 <?= Html::submitButton('Submit', ['class' => 'btn btn-primary']) ?>
 <?php ActiveForm::end(); ?>

我正在表格中上传文件并提交

In the model I have written the code as

 public function rules()
{
    return [
        [['user_image'], 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg']
    ];
}

 public function upload()
{
    if ($this->validate()) {
        $this->user_image->saveAs('uploads/' . $this->user_image->baseName . '.' . $this->user_image->extension);
        return true;
    } else {
        return false;
    }
}

在我的控制器中

 public function actionProfile()
{
 $model = new UserProfile();
 $userformmodel = new UserForm();
 $model->user_image = UploadedFile::getInstance($userformmodel, 'user_image');
 if($model->save(false))
                {
                $model->upload();        
                }
 }

这只是创建一个名为uploads. 但是我想在每个用户的上传目录中创建一个目录,即基于user我要创建的数据库表中的主键并命名目录名称。

例如,如果注册的用户保存为 primarykey 4 ,则必须创建一个名为4的目录,并且必须将他上传的文件保存到该目录中。

如何做到这一点?请帮忙。

4

3 回答 3

7

在 yii2 中,你可以使用 'yii\helpers\FileHelper' 来创建文件夹。

FileHelper::createDirectory($path, $mode = 0775, $recursive = true);

在你的情况下:

public function upload()
{
    if ($this->validate()) {
        $path = 'uploads/'. USERNAMEHERE .'/'. date('YMD');
        FileHelper::createDirectory($path);
        $this->user_image->saveAs($path .'/'. $this->user_image->baseName . '.' . $this->user_image->extension);
        return true;
    } else {
        return false;
    }
}
于 2016-04-14T06:55:43.793 回答
3

步骤1:

在模型文件中使用 'yii\helpers\FileHelper'。

第2步:

在您编写保存文件功能的模型文件中,添加以下行:

if ($this->validate()) {
    $path = 'uploads/'. USERNAMEHERE .'/'. date('YMD');
    FileHelper::createDirectory($path);
    $this->user_image->saveAs($path .'/'. $this->user_image->baseName . '.' . $this->user_image->extension);
    return true;
}
于 2016-08-20T05:42:40.767 回答
0

这是在另一个目录中创建目录并使用yii框架根据年->月->文件名存储文件的代码年-父目录,月-子目录

然后最后将文件存储在月份目录中:

 $new_file_name   = $_FILES['Book']['name']['image'];
            $path=YII::getPathOfAlias('webroot').'/resources/uploads/';
            $year_folder = $path . date("Y");
            $month_folder = $year_folder . '/' . date("m");


            // change umask to '0' by default to make folder with full permissions
            $oldmask = umask(0);

            /*
            for reference
            https://stackoverflow.com/questions/3997641/why-cant-php-create-a-directory-with-777-permissions
            */

            !file_exists($year_folder) && mkdir($year_folder , 0777);
            !file_exists($month_folder) && mkdir($month_folder, 0777);
            umask($oldmask);

            $path = $month_folder . '/' . $new_file_name;
            $res = move_uploaded_file ($_FILES['Book']['tmp_name']
                                                    ['image'],$path);
            chmod($path, 0666);
于 2017-08-22T13:55:41.280 回答