|
php對excel文件進行循環(huán)讀取
php對字符進行ascii編碼轉化,將字符轉為十進制數(shù)
php對excel日期格式讀取,并進行顯示轉化
php對漢字亂碼進行編碼轉化
復制代碼 代碼如下:
<?php
require_once 'phpExcel.php';
/**對excel里的日期進行格式轉化*/
function GetData($val){
$jd = GregorianToJD(1, 1, 1970);
$gregorian = JDToGregorian($jd+intval($val)-25569);
return $gregorian;/**顯示格式為 “月/日/年” */
}
$filePath = 'test.xlsx';
$phpExcel = new phpExcel();
/**默認用excel2007讀取excel,若格式不對,則用之前的版本進行讀取*/
$phpReader = new phpExcel_Reader_Excel2007();
if(!$phpReader->canRead($filePath)){
$phpReader = new phpExcel_Reader_Excel5();
if(!$phpReader->canRead($filePath)){
echo 'no Excel';
return ;
}
}
$phpExcel = $phpReader->load($filePath);
/**讀取excel文件中的第一個工作表*/
$currentSheet = $phpExcel->getSheet(0);
/**取得最大的列號*/
$allColumn = $currentSheet->getHighestColumn();
/**取得一共有多少行*/
$allRow = $currentSheet->getHighestRow();
/**從第二行開始輸出,因為excel表中第一行為列名*/
for($currentRow = 2;$currentRow <= $allRow;$currentRow++){
/**從第A列開始輸出*/
for($currentColumn= 'A';$currentColumn<= $allColumn; $currentColumn++){
$val = $currentSheet->getCellByColumnAndRow(ord($currentColumn) - 65,$currentRow)->getValue();/**ord()將字符轉為十進制數(shù)*/
if($currentColumn == 'A')
{
echo GetData($val)."/t";
}else{
//echo $val;
/**如果輸出漢字有亂碼,則需將輸出內容用iconv函數(shù)進行編碼轉換,如下將gb2312編碼轉為utf-8編碼輸出*/
echo iconv('utf-8','gb2312', $val)."/t";
}
}
echo "</br>";
}
echo "/n";
?>
php技術:PHPExcel讀取Excel文件的實現(xiàn)代碼,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。