PHPExcel Excelファイルの実現コードを読みだします。
1748 ワード
知識点に関して:phpはexcelファイルに対して循環読取phpを行い、文字をascii符号化変換し、文字を十進数phpに変えてエクセル日付フォーマットを読み、表示変換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() */
if($currentColumn == 'A')
{
echo GetData($val)."\t";
}else{
//echo $val;
/** , iconv , gb2312 utf-8 */
echo iconv('utf-8','gb2312', $val)."\t";
}
}
echo "</br>";
}
echo "
";
?>
に変換する。