PHPEXCEL包含CSV格式的html

时间:2016-12-14 10:19:52

标签: php csv phpexcel

我是PHPEXCEL的新手。我的问题是PHPEXCEL(下面的代码)包含CSV输出中的HTML。

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>

    <body>
    The quick brown fox jumps over the lazy dog.
    <?php
    /** Include PHPExcel */
    require_once dirname(__FILE__) . '/PHPExcel_1.8.0_doc/Classes/PHPExcel.php';


    // Create new PHPExcel object
    $objPHPExcel = new PHPExcel();

    // Add some data
    $objPHPExcel->setActiveSheetIndex(0)
                ->setCellValue('A1', 'ID')
                ->setCellValue('B1', 'Name')
                ->setCellValue('C1', 'Description')
                ->setCellValue('D1', 'Type');

                //ID
                for($i=2; $i<=6; $i++){
    $objPHPExcel->setActiveSheetIndex(0)->setCellValue('A'.$i, $i-1);
                }

                //Name
                for($i=2; $i<=6; $i++){
    $objPHPExcel->setActiveSheetIndex(0)->setCellValue('B'.$i, "Game" . ($i-1));
                }


    // Miscellaneous glyphs, UTF-8
    /*$objPHPExcel->setActiveSheetIndex(0)
                ->setCellValue('A4', 'Miscellaneous glyphs')
                ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç');
    */

    // Rename worksheet
    $objPHPExcel->getActiveSheet()->setTitle('List of Games');


    // Set active sheet index to the first sheet, so Excel opens this as the first sheet
    $objPHPExcel->setActiveSheetIndex(0);


    // Redirect output to a client’s web browser (Excel5)
    header('Content-Type: application/vnd.ms-excel');
    header('Content-Disposition: attachment;filename="gcg_list.xls"');
    header('Cache-Control: max-age=0');
    // If you're serving to IE 9, then the following may be needed
    header('Cache-Control: max-age=1');

    // If you're serving to IE over SSL, then the following may be needed
    header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past
    header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified
    header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1
    header ('Pragma: public'); // HTTP/1.0

    $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
    $objWriter->save('php://output');
    exit;
    ?>
    </body>
    </html>

输出:
敏捷的棕色狐狸跳过了懒狗。 Џࡱက; ş+'@ Hh䄀Untitled SpreadsheetUnknown CreatorUnknown Creator @7Uҁ@7UҁҁрB=%r8X“1܀Calibri 3f̿fff̙̙̌̿̿̿̿3f3̌fff3f3f33333f33333“GamesAAg恀IDNameDescriptionTypeGame1Game2Game3Game4Game5̇р* + Dffffff濧ffffff濨迩迡”dXX333333ӿ333333ӿU} $} $} $} $ @ @ @ @&gt; @ddggՍ՜。+,0 HPX`hp x䄀工作表Feuilles de calculRoot EntryF7Uҁ7UҁSummaryInformation(F YaoWorkbookFDžDocumentSummaryInformation8F쀀

如果我的代码是纯PHP(没有HTML标记),PHPEXCEL将输出正确的CSV文件。

输出:
ID名称描述类型 1 Game1
2 Game2
3 Game3
4 Game4
5 Game5

你能帮我知道代码有什么问题吗?感谢

2 个答案:

答案 0 :(得分:2)

如果代码中包含HTML,则您的网络服务器会将HTML发送给您的用户。此时,Web服务器告诉浏览器访问它所发送内容的格式是什么。 (在您的情况下,HTML,因为它位于页面的顶部)

然后你输出PHPExcel文件,但是在这个阶段已经太晚了,因为用户的浏览器已经被告知它正在接收MIME类型“text / html”的内容。在请求过程中,没有任何机制告诉浏览器内容类型已更改,并开始以不同方式处理它。

答案 1 :(得分:0)

我创建了一个sepate php文件,称之为“魅力”。我想让马克贝克回答这个问题:但是