ファイルのアップロードに関するこの記事を読んで適用しようとしていますが、問題があります。これは言われています:
if ($form->isValid()) {
$em = $this->getDoctrine()->getEntityManager();
$document->upload();
$em->persist($document);
$em->flush();
$this->redirect(...);
}
コントローラに入れる必要があり、ここにupload
関数の定義があります
public function upload()
{
// the file property can be empty if the field is not required
if (null === $this->file) {
return;
}
// we use the original file name here but you should
// sanitize it at least to avoid any security issues
// move takes the target directory and then the target filename to move to
$this->file->move($this->getUploadRootDir(), $this->file->getClientOriginalName());
// set the path property to the filename where you'ved saved the file
$this->path = $this->file->getClientOriginalName();
// clean up the file property as you won't need it anymore
$this->file = null;
}
しかし、これはどこに置くべきですか?コントローラーで、それを呼び出すアクションの上でエラーが発生Fatal error: Call to undefined method...
しました。また、別のクラスとファイルに配置し、使用して名前空間を追加しようとしましたが、エラーは残ります。どこが間違っているのか教えていただけませんか?:)