0

我有一个网页,用户在其中选择要显示的行数,然后是表单中的一个按钮,用于将数据导出到 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 文件中。

可能是什么问题?

有我缺少的设置吗?

4

1 回答 1

0

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

我在 HTML 中有 PHP 代码。

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

于 2013-05-14T19:00:41.137 回答