我是symfony和php的新手。通过阅读symfony文档,我成功上传了一张图片。但现在我正在努力限制图像的大小。我尝试使用注释,但它不起作用。谁能帮我吗?提前致谢。这是我的代码。
/**
* @Assert\Image(
* minWidth = 100,
* maxWidth = 400,
* minHeight = 100,
* maxHeight = 400,
* mimeTypesMessage = "Please upload valid image"
* )
*/
public $file;
public function setFile(UploadedFile $file = null)
{
$this->file = $file;
}
public function getFile()
{
return $this->file;
}
答案 0 :(得分:-1)
您可以删除docblock和$file
属性之间的空行吗?