php - pdf generation using phpexcel in windows -
I am generating PDFs and preparing Excel reports using the phpexcel library. Everything works well in the Ubuntu system, but the PDF system does not generate the PDF file, only the excel file is created. (Empty PDF is generated). Is there a memory barrier in PDF that is generated in PDF ... If so, what is the solution?
Try entering this row in your code
$ ObjWriter = PHPExcel_IOFactory :: createWriter ($ objPHPExcel, 'Excel2007'); $ ObjWriter- & gt; Save ('php: // output'); Please take a look at this link. Maybe it can help you ..
Comments
Post a Comment