yii如何更改上传的文件名

时间:2015-01-08 10:19:50

标签: php yii upload

我想上传图片并更改原始名称然后保存。

型号:

public function rules()
    {
        return array(
            array('image', 'file', 'types'=>'jpg, gif, png'),
        );
    }

控制器:

$model->image = CUploadedFile::getInstanceByName('image');

如果我在没有任何其他操作的情况下保存它将会起作用。 但是我怎么能改变图像的名字呢?我尝试下面的事情:

$model->image->name = "xxx";  //CUploadedFile.name readonly

if($model->save())
    $model->images->saveAs(some_path_else.newname);  //the files's new name is different from database


 $model->image = "abc.jpg";  //wont save it

image属性是否必须是CUploadedFile的实例? 任何人帮助请

2 个答案:

答案 0 :(得分:0)

做这样的事情

$uploadedFile = CUploadedFile::getInstance($model, 'image');
if (!empty($uploadedFile)) {
    //new name will go here
    $model->image = strtotime($this->getCurrentDateTime()) . '-' .$uploadedFile;
}
//this will save the image with new name
$uploadedFile->saveAs(Yii::app()->basePath.'/../public/images/user/' . $model->image);

答案 1 :(得分:0)

感谢您的回答。 我想到了。 CUploadedFile.name是只读的,所以我无法更改它。 模型需要一个新的公共属性:

public $file;    
public function rules()
        {
            return array(
                array('file', 'file', 'types'=>'jpg, gif, png'),
                array('iamge', 'length'=>'255'),
            );
        }

然后在控制器中:

$model->file = CUploadedFile::getInstanceByName('image');
$model->file->saveAs(Yii::app()->basePath.'/../public/images/user/' . $model->image);
$model->image = $model->file->name;

它工作正常。(这不是真正的代码) see here