Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public function show_pdfAction($id)
  2. {
  3. $em = $this->getDoctrine()->getManager();
  4. $mypdf = $em->getRepository('AppBundle:Article')->find($id);
  5.  
  6.  
  7. $pdfFile = stream_get_contents($mypdf->getArtPdf()); //returns pdf file stored as mysql blob
  8. $response = new Response($pdfFile, 200, array('Content-Type' => 'application/pdf'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement