使用Symfony2上传文件 - 将文件名与上传的文件进行比较

时间:2014-09-08 09:33:20

标签: php symfony

我使用此1指令实现此功能,但我不知道如何将生成的文件名与上传的文件进行比较。

修改

我使用以下代码生成新文件名:

/**
 * Called before saving the entity
 * 
 * @ORM\PrePersist()
 * @ORM\PreUpdate()
 */
public function preUpload()
{   
    if (null !== $this->file) {
        // do whatever you want to generate a unique name
        $filename = sha1(uniqid(mt_rand(), true));
        $this->path = $filename.'.'.$this->file->guessExtension();
    }
}

1 个答案:

答案 0 :(得分:0)

我只是使用PHP函数file_exists来比较文件名。