我正在尝试使用表单和Doctrine在数据库中保存图像.在我的实体中,我做到了这一点:
/** * @ORM\Column(name="photo",type="blob",nullable=true) */ private $photo; private $file; /** * @ORM\PrePersist() * @ORM\PreUpdate() */ public function upload() { if (null === $this->file) { return; } $this->setPhoto(file_get_contents($this->getFile())); }
我还在我的表单类型中添加了这个:
->add('file','file')
Serialization of ‘Symfony\Component\HttpFoundation\File\UploadedFile’
is not allowed
您必须将图像文件内容保存为二进制文件
public function upload() { if (null === $this->file) { return; } //$strm = fopen($this->file,'rb'); $strm = fopen($this->file->getRealPath(),'rb'); $this->setPhoto(stream_get_contents($strm)); }
UploadedFile
是一个延伸0700的类,延伸到SplFileInfo
SplFileInfo具有函数getRealPath()
,它返回临时文件名的路径.
这是为了防止您不想将文件上传到服务器,以执行该操作follow these steps.