php處理Excel步驟介紹
遇到問題
平常在工作中,時常會出現將資料庫表格匯出為Excel或是將Excel匯入資料庫表的需求。這項需求早早就已經實現過了,為了方便導入導出,兄弟連www.lampbrother.net將其分裝成了兩個方法作為記錄。
程式碼實現
phpexcel類別庫的引用
phpexcel擁有強大的Excel處理能力,在packagist上已經擁有數百萬次的下載量,不過實話實說,excel的處理速度仍然是非常慢,當資料量較大時慎重使用。在packagist上下載或直接用composer require phpoffice/phpexcel之後,便可以使用phpexcel了。
匯出成為Excel
在絕大多數情況下,匯出excel其實就是將二位數組轉換成表格。
use namespace PHPExcel;
/**
* @param $name string 要保存的Excel的名字
* @param $ret_data 轉換為表格的二維陣列
*/
function exportExcel($name, $ret_data){ //設定表格
$objPHPExcel->getProperties()-> setCreator($name)
->setLastModifiedBy($name)
->setSubject("Office 2007 XLSX Test Document")
XLSX, generated using PHP classes.")
->setKeywords("office 2007 open result file");
//填入資料
foreach ($ret_data as $key => $row ) {
$num = $key + 1;
//$row = foreach ($row as $key2 => $value2) {
0)->setCellValue( Cell::stringFromColumnIndex($i). ($num), $value2);
}
//設定表格並輸出
$objPHPExcel->getActiveSheet()->setTitle ($name);
header('Content-Type: application/vnd.ms-excel');
header( ('Cache- Control: max-age=0');
header('Cache-Control: max-age=1');
header('Last-Modified: ' . gmdate( header('Last-Modified: ' . gmd): ' ' GMT');
header('Cache-Control: cache, must-revalidate');
header(遠::createWriter($objPHPExcel, 'Excel5 ');
$objWriter->save('php://output');
exit;
}
導入Excel
同理,導入Excel其實就是將Excel的數據轉化成為二維數組,這就要求Excel必須符合格式。
function getRows($inputFileName)
{
if (!file_exists($inputFileName)) {
throw new Exception("檔案不存在");
}
$inputFileType = PHPExcel_IOFactory::identify($inputFileName);
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
$objPHPExcel = $objReader->load($inputFileName);
$objWorksheet = $objPHPExcel->getActiveSheet();
$highestRow = $objWorksheet->getHighestRow();
$highestColumn = $objWorksheet->getHighestColumn();
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);//總列數
$row = 1;
$curr = array();
while ($row for ($col = 0; $col getCellByColumnAndRow($col, $row)->getValue()); $curr[$row][] = $value;
}
$row++;
}
}
其他
匯出時儲存的格式是xlsx,想要修改成其他格式需要設定不同的參數。 ) sheet為activeSheet)關閉,或根據程式中的sheet名稱選擇sheet。