PHPExcel输出问题

时间:2013-05-10 16:22:10

标签: php export-to-excel

我有一个网页,用户可以选择要显示的行数,然后选择将数据导出为Excel的表单中的按钮。

<form method="post" action="">
     <input type="Submit" name="excel" value="Export" class="button">
</form>

我能够获取数据并将其放入带有以下

的excel文件中
if($_POST['excel']){
        $phpExcel = new PHPExcel();
        $styleArray = array(
            'font' => array(
            'bold' => true,
            )
        );
        //Get the active sheet and assign to a variable
        $foo = $phpExcel->getActiveSheet();

        //add column headers, set the title and make the text bold
        $foo->setCellValue("A1", "Nombre")
            ->setCellValue("B1", "Paterno")
            ->setCellValue("C1", "Pkey")
            ->setCellValue("D1", "Telefono")
            ->setCellValue("E1", "Ciudad")
            ->setCellValue("F1", "Used")
            ->setTitle("Contactos Encuestas")
            ->getStyle("A1:F1")->applyFromArray($styleArray);

        $xlsRow = 1;
        foreach ($rows as $column) {
            $foo->setCellValue("A".$xlsRow++, $column[2])
                ->setCellValue("B".$xlsRow++, $column[3])
                ->setCellValue("C".$xlsRow++, $column[0])
                ->setCellValue("D".$xlsRow++, $column[1])
                ->setCellValue("E".$xlsRow++, $column[5])
                ->setCellValue("F".$xlsRow++, $column[4]);
        }

        header("Content-Type: application/vnd.ms-excel");
        header("Content-Disposition: attachment; filename=\"ENcuestas_Contactos.xls\"");
        header("Cache-Control: max-age=0");

        $objWriter = PHPExcel_IOFactory::createWriter($phpExcel, "Excel5");
        $objWriter->save("php://output");
        $phpExcel->disconnectWorksheets();
        unset($phpExcel);
    }

这种方式有用,问题是将带有按钮和图像等网页元素的奇怪文本放到excel文件中。

可能是什么问题?

有没有我缺少的设置?

1 个答案:

答案 0 :(得分:0)

找出我在excel文件中获取HTML元素的原因。

我在HTML中有PHP代码。

将PHP代码放在<html>代码之外,并显示我的excel文件,没有任何问题。