1. 程式人生 > >PHP導出excel文件,第二步先實現自寫二維數組加入模板excel文件後導出

PHP導出excel文件,第二步先實現自寫二維數組加入模板excel文件後導出

should b- 數組 data 寫入 har oca def actor

今天主要研究數據加入EXCEL並導出的問題,先不從數據庫提取數據導出,自己先寫一個二維數組,然後遍歷二維數組寫入excel模板中導出,首先根據模板excel的內容書寫對應的二維數組

$arr=array(array("111-3004394-8497032","UMN207-05MM","UMN207-05MM","2","Eric S Herbert / Entergy","600 Rockyhill Rd","PNPS"," ","plymouth","ma","02360","US","508 830-8823","","","","","","","1",""),
array("112-3297805-3545827","UMN207-05MM","UMN207-05MM","1","Yibai Liao","11 BANNISTER DR"," "," ","HOPEWELL JUNCTION"," ","12533-8204","US","9175926724","","","","","","","1",""));

然後用foreach遍歷二維數組並寫入模板excle文件具體代碼如下

$row=2;

foreach ($arr as $order)
{
$col=0;
foreach($order as $val)

$objPHPExcel->setActiveSheetIndex()->setCellValueByColumnAndRow($col, $row, $val);
$col++;
}

$row++;
}

$row為行,指定從第二行插入數據,並且循環換行, $val為二維數組數據,$col為列,基本實現數據寫入excel表格並導出,整體代碼如下:

<?php
if($_POST[‘eub‘]==1)
{
header("location:ListOrders.php?t=OrderStatus&fc=all&orderstatus=Unshipped&range=14&submit=Go");
}
error_reporting(E_ALL);
ini_set(‘display_errors‘, TRUE);
ini_set(‘display_startup_errors‘, TRUE);
date_default_timezone_set(‘Europe/London‘);

if (PHP_SAPI == ‘cli‘)
die(‘This example should only be run from a Web Browser‘);

/** Include PHPExcel */
require_once dirname(__FILE__) . ‘/../plugins/PHPExcel-1.8/Classes/PHPExcel.php‘;


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

// Read from Excel2007 (.xlsx) template
//echo date(‘H:i:s‘) , " Load Excel5 template file" , EOL;
$objReader = PHPExcel_IOFactory::createReader(‘Excel5‘);
$objPHPExcel = $objReader->load("../template/eub.xls");
//print_r($objPHPExcel);
//die();

$filename = "eub-".date("YmdHis").".xls";

$row = 2;

// Add some data
$arr=array(array("111-3004394-8497032","UMN207-05MM","UMN207-05MM","2","Eric S Herbert / Entergy","600 Rockyhill Rd","PNPS"," ","plymouth","ma","02360","US","508 830-8823","","","","","","","1",""),
array("112-3297805-3545827","UMN207-05MM","UMN207-05MM","1","Yibai Liao","11 BANNISTER DR"," "," ","HOPEWELL JUNCTION"," ","12533-8204","US","9175926724","","","","","","","1",""));

foreach ($OrderList as $order)
{
$col=0;
foreach($order as $val)

$objPHPExcel->setActiveSheetIndex()->setCellValueByColumnAndRow($col, $row, $val);
$col++;
}

$row++;
}

// Redirect output to a client’s web browser (Excel2007)
header(‘Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset="GB2312"‘);
header(‘Content-Disposition: attachment;filename="‘.$filename.‘"‘);
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, ‘Excel2007‘);
$objWriter->save(‘php://output‘);
exit;
?>

下一步就是從數據庫讀取數據寫入excel模板表並導出的實現過程。

PHP導出excel文件,第二步先實現自寫二維數組加入模板excel文件後導出