symfony 使用excel方法

来源:互联网 发布:ubuntu全中文包 编辑:程序博客网 时间:2024/06/05 22:44

ctually, to do it right you need to follow next steps:

  • Edit your deps file and add dependency from the PHPExcel
[PHPExcel]git=http://github.com/PHPOffice/PHPExcel.gittarget=/phpexcelversion=origin/master
  • Run php bin/vendors install in order to install all missing dependencies (PHPExcel in our case)

  • Update prefixes section in app/autoload.php:

$loader->registerPrefixes(array(    // ...    'PHPExcel'         => __DIR__.'/../vendor/phpexcel/Classes',));
  • Done. Now, you can use it in your bundle's controller (code based on PHPExcel example from Tests/01simple-download-xls.php):
<?phpnamespace Demo\MyBundle\Controller;use Symfony\Bundle\FrameworkBundle\Controller\Controller;use Symfony\Component\HttpFoundation\Response;use PHPExcel;use PHPExcel_IOFactory;class DemoController extends Controller{   public function demoAction()   {        $response = new Response();       // Create new PHPExcel object       $objPHPExcel = new PHPExcel();       // Set document properties       $objPHPExcel->getProperties()->setCreator("Me")                   ->setLastModifiedBy("Someone")                   ->setTitle("My first demo")                   ->setSubject("Demo Document");       // Add some data       $objPHPExcel->setActiveSheetIndex(0)                   ->setCellValue('A1', 'Hello')                   ->setCellValue('B2', 'world!')                   ->setCellValue('C1', 'Hello')                   ->setCellValue('D2', 'world!');       // Set active sheet index to the first sheet       $objPHPExcel->setActiveSheetIndex(0);       // Redirect output to a client’s web browser (Excel5)       $response->headers->set('Content-Type', 'application/vnd.ms-excel');       $response->headers->set('Content-Disposition', 'attachment;filename="demo.xls"');       $response->headers->set('Cache-Control', 'max-age=0');       $response->prepare();       $response->sendHeaders();       $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');       $objWriter->save('php://output');       exit();   }}
0 0
原创粉丝点击