/**
* PHPExcel資料匯入方法
* Document:https://github.com/PHPOffice/PHPExcel/blob/develop/Documentation/markdown/Overview/07-Accessing-Cells.md
* @param string $file 檔案名稱
* @return msg SUCCESS:1, FALSE:$msg
* @author farwish.com
*/
include './PHPExcel.php';
include './PHPExcel/IOFactory.php';
function excelReader($file) {
if(@fopen($file, 'r')) {
$objReader = PHPExcel_IOFactory::createReader('Excel2007');
if( ! $objReader->canRead($file)) {
$objReader = PHPExcel_IOFactory::createReader('Excel5');
if( ! $objReader->canRead($file)) {
die('僅支援 .xls 類型的檔案 !');
}
}
$objReader->setReadDataOnly(true);
$objPHPExcel = $objReader->load($file);
$objWorksheet = $objPHPExcel->getActiveSheet();
$highestRow = $objWorksheet->getHighestRow(); //10
$highestColumn = $objWorksheet->getHighestColumn(); //C
$betten = 'A2:'.$highestColumn.$highestRow;
$dataArray = $objWorksheet->rangeToArray(
$betten,
'',
TRUE,
TRUE
);
if($dataArray && is_array($dataArray)) {
foreach($dataArray as $v) {
if(intval($v[0]) == 0) {
die('資料的格式不正確 !');
}
//Your code here...
$msg = 1;
}
} else {
$msg = '檔案沒有資料';
}
} else {
$msg = '檔案不存在 !';
}
return $msg;
}
用phpExcel實現Excel資料的匯入匯出(全步驟詳細解析)
很多文章都有提到關於使用phpExcel實現Excel資料的匯入匯出,大部分文章都差不多,或者就是轉載的,都會出現一些問題,下面是本人研究phpExcel的使用常式總結出來的使用方法,接下來直接進入正題。
首先先說一下,本人的這段常式是使用在Thinkphp的開發架構上,要是使用在其他架構也是同樣的方法,很多人可能不能正確的實現Excel的匯入匯出,問題基本上都是phpExcel的核心類引用路徑出錯,如果有問題大家務必要對路勁是否引用正確進行測試。
(一)匯入Excel
第一,在前台html頁面進行上傳檔案:如:
複製代碼 代碼如下:
<form method="post" action="php檔案" enctype="multipart/form-data">
<h3>匯入Excel表:</h3><input type="file" name="file_stu" />
<input type="submit" value="匯入" />
</form>
第二,在對應的php檔案進行檔案的處理
if (! empty ( $_FILES ['file_stu'] ['name'] ))
{
$tmp_file = $_FILES ['file_stu'] ['tmp_name'];
$file_types = explode ( ".", $_FILES ['file_stu'] ['name'] );
$file_type = $file_types [count ( $file_types ) - 1];
/*判別是不是.xls檔案,判別是不是excel檔案*/
if (strtolower ( $file_type ) != "xls")
{
$this->error ( '不是Excel檔案,重新上傳' );
}
/*設定上傳路徑*/
$savePath = SITE_PATH . '/public/upfile/Excel/';
/*以時間來命名上傳的檔案*/
$str = date ( 'Ymdhis' );
$file_name = $str . "." . $file_type;
/*是否上傳成功*/
if (! copy ( $tmp_file, $savePath . $file_name ))
{
$this->error ( '上傳失敗' );
}
/*
*對上傳的Excel資料進行處理產生編程資料,這個函數會在下面第三步的ExcelToArray類中
注意:這裡調用執行了第三步類裡面的read函數,把Excel轉化為數組並返回給$res,再進行資料庫寫入
*/
$res = Service ( 'ExcelToArray' )->read ( $savePath . $file_name );
/*
重要代碼 解決Thinkphp M、D方法不能調用的問題
如果在thinkphp中遇到M 、D方法失效時就加入下面一句代碼
*/
//spl_autoload_register ( array ('Think', 'autoload' ) );
/*對產生的數組進行資料庫的寫入*/
foreach ( $res as $k => $v )
{
if ($k != 0)
{
$data ['uid'] = $v [0];
$data ['password'] = sha1 ( '111111' );
$data ['email'] = $v [1];
$data ['uname'] = $v [3];
$data ['institute'] = $v [4];
$result = M ( 'user' )->add ( $data );
if (! $result)
{
$this->error ( '匯入資料庫失敗' );
}
}
}
}
第三:ExcelToArrary類,用來引用phpExcel並處理Excel資料的
class ExcelToArrary extends Service{
public function __construct() {
/*匯入phpExcel核心類 注意 :你的路徑跟我不一樣就不能直接複製*/
include_once('./Excel/PHPExcel.php');
}
/**
* 讀取excel $filename 路徑檔案名稱 $encode 返回資料的編碼 預設為utf8
*以下基本都不要修改
*/
public function read($filename,$encode='utf-8'){
$objReader = PHPExcel_IOFactory::createReader('Excel5');
$objReader->setReadDataOnly(true);
$objPHPExcel = $objReader->load($filename);
$objWorksheet = $objPHPExcel->getActiveSheet();
$highestRow = $objWorksheet->getHighestRow();
$highestColumn = $objWorksheet->getHighestColumn();
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
$excelData = array();
for ($row = 1; $row <= $highestRow; $row++) {
for ($col = 0; $col < $highestColumnIndex; $col++) {
$excelData[$row][] =(string)$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
}
}
return $excelData;
}
}
第四,以上就是匯入的全部內容,phpExcel包附在最後。
(二)Excel的匯出(相對於匯入簡單多了)
第一,先查出資料庫裡面要產生Excel的資料,如:
$data= M('User')->findAll(); //查出資料
$name='Excelfile'; //產生的Excel檔案檔案名稱
$res=service('ExcelToArrary')->push($data,$name);
第二,ExcelToArrary類,用來引用phpExcel並處理資料的
class ExcelToArrary extends Service{
public function __construct() {
/*匯入phpExcel核心類 注意 :你的路徑跟我不一樣就不能直接複製*/
include_once('./Excel/PHPExcel.php');
}
/* 匯出excel函數*/
public function push($data,$name='Excel'){
error_reporting(E_ALL);
date_default_timezone_set('Europe/London');
$objPHPExcel = new PHPExcel();
/*以下是一些設定 ,什麼作者 標題啊之類的*/
$objPHPExcel->getProperties()->setCreator("轉彎的陽光")
->setLastModifiedBy("轉彎的陽光")
->setTitle("資料EXCEL匯出")
->setSubject("資料EXCEL匯出")
->setDescription("備份資料")
->setKeywords("excel")
->setCategory("result file");
/*以下就是對處理Excel裡的資料, 橫著取資料,主要是這一步,其他基本都不要改*/
foreach($data as $k => $v){
$num=$k+1;
$objPHPExcel->setActiveSheetIndex(0)
//Excel的第A列,uid是你查出數組的索引值,下面以此類推
->setCellValue('A'.$num, $v['uid'])
->setCellValue('B'.$num, $v['email'])
->setCellValue('C'.$num, $v['password'])
}
$objPHPExcel->getActiveSheet()->setTitle('User');
$objPHPExcel->setActiveSheetIndex(0);
header('Content-Type: application/vnd.ms-excel');
header('Content-Disposition: attachment;filename="'.$name.'.xls"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
$objWriter->save('php://output');
exit;
}