rwsoft/excel-bundle

此包集成了 PHPExcel 与 Symfony2。

安装: 572

依赖者: 0

建议者: 0

安全: 0

星星: 1

关注者: 2

分支: 0

开放问题: 0

类型:symfony-bundle

1.0.0 2013-08-04 10:11 UTC

This package is auto-updated.

Last update: 2024-08-27 22:43:56 UTC


README

此包集成了 PHPExcel 与 Symfony2。

注册格式

ExcelBundle 将以下格式注册为 在路由中使用

  • csv
  • xls
  • xlsx
  • pdf

发送响应

use RWSoft\ExcelBundle\ExcelResponse;

$doc = new \PHPExcel();
$objWriter = new \PHPExcel_Writer_Excel5($doc);
$response = new ExcelResponse($objWriter);
$response->send();