我正在开发一个应用程序,我需要以 PDF 格式创建发票。我正在使用pdfbundle并且正确创建了 PDF 文件:
public function helloAction()
{
$format = $this->get('request')->get('_format');
$name = "work!!!";
return $this->render(sprintf('miomioBundle:Venta:helloAction.%s.twig', $format), array('name' => $name));
}
但是我怎样才能将该文件存储在数据库中呢?