PHPExcel 是用來操作Office Excel 文檔的一個PHP類庫,它基於微軟的OpenXML標准和PHP語言。可以使用它來讀取、寫入不同格式的電子表格,如 Excel (BIFF) .xls, Excel 2007 (OfficeOpenXML) .xlsx, CSV, Libre/OpenOffice Calc .ods, Gnumeric, PDF, HTML等等。
一、Drupal 通過Library 調用 PHPExcel
將PHPExcel 下載後,上傳到Drupal目錄:sites/all/libraries/PHPExcel
如果你的項目中安裝了libraries模塊,可以通過libraries_load($name);來調用。
如果沒有安裝libraries模塊,可以簡單的使用下列代碼來調用:
復制代碼 代碼如下:require("sites/all/libraries/PHPExcel/PHPExcel/IOFactory.php");
注意為了確保Excel全部導入,程序可以會話很長的時間來進行。所以在代碼開頭部分加入:
復制代碼 代碼如下:set_time_limit(0);
來確保運行時間不受限制。
二、Drupal 讀取Excel並導入到數據庫
Drupal 實現上傳Excel文件後,讀取Excel 內容,寫入到數據庫,打印導入結果消息。
歸納起來有這樣幾點:
1.Drupal 讀取Excel 多行多列內容,列數從1到n,行數也是1到n。
2.Drupal 根據數據庫結構 n 個字段分別用於存放Excel 1到n列,如果Excel 的列數很多,可以把n列值存放在1個字段中。
3.這裡我解決的是Excel n列值存放到MySQL n個字段中(n不是很大)
這就是在Drupal最後提交上傳文件後的函數:
復制代碼 代碼如下:<?php
function excel_upload_form_submit($form, &$form_state) {
set_time_limit(0);
$timestamp = time();
// 確保Excel文件上傳了
if ($file = file_save_upload('file')) {
$row = 0; //解析行數
$paseRows = 0; //跳過行數 沒有值的行
$insertRows = 0; //插入行數
$table = array(
'dbfield1′,
'dbfield2′,
'dbfield3,
'dbfield4′,
'dbfield5′,
…
'dbfieldn',
);
require("sites/all/libraries/PHPExcel/PHPExcel/IOFactory.php");
if(($handle = fopen ( $file->filepath, "r" )) !== FALSE) {
$PHPExcel = new PHPExcel ();
$PHPReader = new PHPExcel_Reader_Excel2007 ();
if (! $PHPReader->canRead ( $file->filepath )) {
$PHPReader = new PHPExcel_Reader_Excel5 ();
if (! $PHPReader->canRead ( $file->filepath )) {
echo 'no Excel';
return;
}
}
$PHPExcel = $PHPReader->load ( $file->filepath );
$currentSheet = $PHPExcel->getSheet ( 0 );
/**取得一共有多少列*/
$allColumn = $currentSheet->getHighestColumn();
//取得共有多少列,若不使用此靜態方法,獲得的$col是文件列的最大的英文大寫字母
$col = PHPExcel_Cell::columnIndexFromString($currentSheet->getHighestColumn());
/**取得一共有多少行*/
$allRow = $currentSheet->getHighestRow();
//循環讀取每個單元格的內容。注意行從1開始,列從A開始
for($rowIndex = 2; $rowIndex <= $allRow; $rowIndex++) {
$token_db = $row_db = $field = array();
$i = 0;
$query = ”;
for($colIndex = 0; $colIndex <= $col; $colIndex++) {
//$addr = $colIndex.$rowIndex;
//$cell = $currentSheet->getCell($addr)->getValue();
$cell = $currentSheet->getCellByColumnAndRow($colIndex, $rowIndex)->getValue();
$cell = trim($cell);
if($cell instanceof PHPExcel_RichText) {
//富文本轉換字符串
$cell = $cell->__toString();
}
if ($colIndex == 'A' && !intval($cell)) {
$paseRows++;
break;
}
$field[] = $table[$i];
$token_db[] = "'%s'";
$row_db[] = $cell;
$query .= $table[$i]." = '%s', ";
$i++;
}
$row++;
if ($row_db) {
db_query('INSERT INTO {db_import} ('. implode(', ', $field) .', created) VALUES('. implode(', ', $token_db) .', %d)', array_merge($row_db, array($timestamp)));
$insertRows++;
}
}
fclose ( $handle );
}
drupal_set_message(t('文件 @file 導入成功.', array('@file' => $file->filename)));
drupal_set_message("解析".$row."條數據完畢,新增共".$insertRows."條數據,沒有試題類型ID的".$paseRows."條數據。");
}
else {
drupal_set_message(t('File to import not found.'), 'error');
$form_state['redirect'] = 'admin/content/db/import';
return;
}
}
?>
上面代碼部分注意一下幾點:
復制代碼 代碼如下:
$allColumn = $currentSheet->getHighestColumn(); //獲取的列為英文大寫字母的數組索引。
$col = PHPExcel_Cell::columnIndexFromString($currentSheet->getHighestColumn()); //將英文大寫字母索引格式化為數字,索引值從0開始計算。
本代碼支持讀取Excel 2007 及之前的格式。