duanran3115 2013-12-18 00:40
浏览 45
已采纳

从数据库导出时出现PHPexcel库错误

I am using the PHPexcel Library for my reporting. It functions well when I'm using static values but, when I try to export my data in MySQL database to PHPexcel,

it always gives me this error

Warning: Cannot modify header information - headers already sent 

I've tried ob_start() function but the moment i opened my downloaded excel, it is empty

this is my PHPexcel code:

<?php

include("conn.php");

$query ="Select * from info";
$result = mysql_query($query);



/** Error reporting */
error_reporting(E_ALL);

/** Include path **/
ini_set('include_path', ini_get('include_path').';../Classes/');

/** PHPExcel */
include 'PHPExcel.php';

/** PHPExcel_Writer_Excel2007 */
include 'PHPExcel/Writer/Excel2007.php';

// Create new PHPExcel object
echo date('H:i:s') . " Create new PHPExcel object
";
$objPHPExcel = new PHPExcel();




// Add some data
$row1=1;
$row2=1;
$row3=1;

echo date('H:i:s') . " Add some data
";
$objPHPExcel->setActiveSheetIndex(0);


while($row = mysql_fetch_array($result))
{
$let1 = "A".$row1."";
$let2 = "B".$row2."";
$let3 = "C".$row3."";

$objPHPExcel->getActiveSheet()->SetCellValue($let1, $row['id']);
$objPHPExcel->getActiveSheet()->SetCellValue($let2, $row['name']);
$objPHPExcel->getActiveSheet()->SetCellValue($let3, $row['age']);

$row1++;
$row2++;
$row3++;
}

$objPHPExcel->getActiveSheet()->getStyle("A1:C1")->getFont()->setBold(true);
$objPHPExcel->getActiveSheet()->getStyle("A1:C1")->getFont()->setSize(20);
$objPHPExcel->setActiveSheetIndex(0)->mergeCells('A1:C1');

$objPHPExcel->getActiveSheet()->getStyle('A1')->applyFromArray(
    array(
        'fill' => array(
            'type' => PHPExcel_Style_Fill::FILL_SOLID,
            'color' => array('rgb' => 'FF0000')
        )
    )
);


header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
header("Content-Disposition: attachment;filename=\"filename.xlsx\"");
header("Cache-Control: max-age=0");

exit();

?>

It works perfect dealing with static values but when I tried to dynamically add values, it messes up. Please help, thank u in advance

  • 写回答

1条回答 默认 最新

  • downloadbooks_2014 2013-12-18 00:43
    关注

    Looking at your code, your header() calls are saying that the content of the page should be treated as a spreadsheet but you do not create any output from your spreadsheet object. Remove all output (your echo calls) as it's not possible to have it, move your header calls to the top of the file and echo out the raw output from your Excel class.

    Code below. I've moved the headers, stripped some junk and added what the PHPExcel manual suggests is the way to write to STDOUT.

    <?php
    
    header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
    header("Content-Disposition: attachment;filename=\"filename.xlsx\"");
    header("Cache-Control: max-age=0");
    
    /** Error reporting */
    error_reporting(E_ALL);
    
    /** Include path **/
    ini_set('include_path', ini_get('include_path').';../Classes/');
    
    /** PHPExcel */
    include 'PHPExcel.php';
    
    /** PHPExcel_Writer_Excel2007 */
    include 'PHPExcel/Writer/Excel2007.php';
    
    include("conn.php");
    
    $query ="Select * from info";
    $result = mysql_query($query);
    
    // Create new PHPExcel object
    $objPHPExcel = new PHPExcel();
    
    // Add some data
    $row1=1;
    $row2=1;
    $row3=1;
    
    $objPHPExcel->setActiveSheetIndex(0);
    
    while($row = mysql_fetch_array($result))
    {
        $let1 = "A".$row1."";
        $let2 = "B".$row2."";
        $let3 = "C".$row3."";
    
        $objPHPExcel->getActiveSheet()->SetCellValue($let1, $row['id']);
        $objPHPExcel->getActiveSheet()->SetCellValue($let2, $row['name']);
        $objPHPExcel->getActiveSheet()->SetCellValue($let3, $row['age']);
    
        $row1++;
        $row2++;
        $row3++;
    }
    
    $objPHPExcel->getActiveSheet()->getStyle("A1:C1")->getFont()->setBold(true);
    $objPHPExcel->getActiveSheet()->getStyle("A1:C1")->getFont()->setSize(20);
    $objPHPExcel->setActiveSheetIndex(0)->mergeCells('A1:C1');
    
    $objPHPExcel->getActiveSheet()->getStyle('A1')->applyFromArray(
        array(
            'fill' => array(
                'type' => PHPExcel_Style_Fill::FILL_SOLID,
                'color' => array('rgb' => 'FF0000')
            )
        )
    );
    
    // Untested... pulled from the manual as the way to write with PHPExcel
    $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');                                                                                                           
    $objWriter->save('php://output');
    
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)