【发布时间】:2023-03-25 02:17:02
【问题描述】:
阅读 symfony 文档,http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html
// you must throw an exception here if the file cannot be moved
// so that the entity is not persisted to the database
// which the UploadedFile move() method does automatically
$this->file->move($this->getUploadRootDir(), $this->path);
如果我这样做了
if ($this->file->move(...))
我遇到了一个错误
可捕获的致命错误:类 Symfony\Component\HttpFoundation\File\File 的对象无法在 .../xxx.php 第 96 行中转换为布尔值
【问题讨论】:
标签: file-upload symfony