Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $pdf = new Zend_Pdf();
  2.  
  3. $page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
  4. $font = new Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA);
  5.  
  6. $page->setFont($font,24)
  7. ->drawText("Hello world!",72,720);
  8.  
  9. $pdf->$page;
  10. $pdf->save("example.pdf");
  11.  
  12. Parse error: syntax error, unexpected 'fontWithName' (T_STRING), expecting variable (T_VARIABLE) or '$' in /Users/pawel/Sites/Zend/application/modules/default/controllers/IndexController.php on line 83
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement