Home  >  Q&A  >  body text

I use Dreamweaver to edit but it still doesn't work.

If you open it with Excel, it will be garbled.

phpcn_u13074phpcn_u130742656 days ago1008

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-08-05 08:54:07

    <?php
    $dir=dirname(__FILE__);
    require $dir."/PHPExcel.php";
    $objPHPExcel=new PHPExcel();
    $objSheet=$objPHPExcel->getActiveSheet();
    $objSheet->setTitle("demo");
    //$objSheet->setCellValue("A1","可可")->setCellValue("b1","蛋蛋");
    $array=array(
    array("姓名","年龄"),
    array("大可","58")
    );
    $objSheet->fromArray($array);
    $objWriter=PHPExcel_IOFactory::createWriter($objPHPExcel,"Excel5");
    $objWriter = new PHPExcel_Writer_Excel5($objPHPExcel);
     
    header('Content-Type: application/vnd.ms-excel');
    header('Content-Disposition: attachment;filename="ch3.xls"');
    header('Cache-Control: max-age=0');
    $objWriter->save("php://output");


    reply
    0
  • 正念的奇迹

    正念的奇迹2017-08-03 16:06:36

    This? What does that mean?


    reply
    0
  • Cancelreply