Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //definição do cabeçalho
  2. header('Content-Type: application/vnd.ms-excel;');
  3. header('Content-Disposition: attachment;filename=plan.xls');
  4. header('Content-Transfer-Encoding: binary');
  5. header('Cache-Control: max-age=0');
  6.  
  7. //cria uma planilha no formato do excel 2003
  8. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
  9. $objWriter->save('php://output');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement