国产精品一区二区三区……-大杳蕉伊人欧美一本遒在饯-日本不卡一区免费在线观看-国产亚洲欧美中文字幕

400-800-9385
網(wǎng)站建設(shè)資訊詳細(xì)

PHPExcel-超過26列數(shù)據(jù)的導(dǎo)出

發(fā)表日期:2019-11-15 16:25:07   作者來源:劉紅旺   瀏覽:3349   標(biāo)簽:    
在網(wǎng)站制作中,經(jīng)常會遇到的功能就是數(shù)據(jù)的導(dǎo)入和導(dǎo)出,PHP導(dǎo)入導(dǎo)出功能的實現(xiàn)不算很復(fù)雜,因為有一個比較好的插件PHPEXCEL。

最近遇到一個問題,用phpExcel 導(dǎo)出數(shù)據(jù)的時候發(fā)現(xiàn)報錯 Invalid cell coordinate  一直在用這個插件沒有遇到過這樣的問題,網(wǎng)上找了一下原來是當(dāng)數(shù)據(jù)大于26列的時候 26個字母用完了需要對列數(shù)進(jìn)行處理 大于26應(yīng)該AA,AB,AC,AD…排列下去。PHPExcel數(shù)據(jù)導(dǎo)出方式是一行一行的循環(huán)處理
比如:第一行是標(biāo)題,輸出的時候以A1,B1,C1,D1…AA1,BB1,CC1順序循環(huán)。
**
 * PHPExcel使用類
 * +------------------------------------使用------------------------------------+
 * 導(dǎo)入excel表
 * vendor('PHPExcel.PHPExcelUser');
 * $file='./cs.xlsx';
 * $excel=new \PHPExcelUser($file);
 * $data=$excel->excelImport(1);//從第一行讀取,如果有非字符串和函數(shù)的話則會返加一個錯誤的數(shù)組
 * 導(dǎo)出excel表
 * vendor('PHPExcel.PHPExcelUser');
 * $file='./cs.xlsx';
 * $excel=new \PHPExcelUser($file);
 * $excel->excelExport($data=array(),$title=array());
 * +------------------------------------使用------------------------------------+
 * Class FileTemp
 */
class  PHPExcelUser {
    public $excelFilename; //excel導(dǎo)入或?qū)С龅奈募拿Q
    public $strCheck; //是否進(jìn)行導(dǎo)入全部字符串驗證
    public $funCheck; //是否進(jìn)行導(dǎo)入函數(shù)驗證
    public $errorArr = array(); //當(dāng)需要檢查并且有錯誤時返回的錯誤統(tǒng)計數(shù)組
 
    /**
     * 構(gòu)造函數(shù)
     * @param $excelFilename 文件名稱
     * @param bool $strCheck 是否進(jìn)行字符串驗證檢測
     * @param bool $funCheck 是否進(jìn)行函數(shù)驗證檢測
     */
    public function __construct($excelFilename, $strCheck = false, $funCheck = false) {
        if (!$excelFilename) {
            try {
                $error = '請輸入Excel文件名稱';
                throw new Exception($error);
            } catch (Exception $e) {
                echo $e->getMessage();
            }
        }
        $this->excelFilename = $excelFilename;;
        $this->strCheck = $strCheck;
        $this->funCheck = $funCheck;
    }
/**
     * 導(dǎo)出成Excel文件
     * @param array $data 一個二維數(shù)組,結(jié)構(gòu)如同從數(shù)據(jù)庫查出來的數(shù)組
     * @param array $title excel的第一行標(biāo)題,一個數(shù)組,如果為空則沒有標(biāo)題
     * @exapme
     * $arr = $Model -> select();
     * excelExport($arr,array('id','賬戶','密碼','昵稱'),'文件名');
     */
    function excelExport($data = array(), $title = array()) {
        require_once('PHPExcel.php');
        error_reporting(E_ALL);
        date_default_timezone_set('Europe/London');
        $objPHPExcel = new PHPExcel();
 
        /*以下是一些設(shè)置 ,什么作者  標(biāo)題啊之類的*/
        $objPHPExcel->getProperties()->setCreator($this->excelFilename)
            ->setLastModifiedBy($this->excelFilename)
            ->setTitle("數(shù)據(jù)EXCEL導(dǎo)出")
            ->setSubject("數(shù)據(jù)EXCEL導(dǎo)出")
            ->setDescription("備份數(shù)據(jù)")
            ->setKeywords("excel")
            ->setCategory("result file");
        /*以下就是對處理Excel里的數(shù)據(jù), 橫著取數(shù)據(jù),主要是這一步,其他基本都不要改*/
        $model = $objPHPExcel->setActiveSheetIndex(0);
        $key = 65; //只有A-Z
        $key2 = ord("@");//@--64
        foreach ($title as $k => $v) {
        if($key>ord("Z")){
            $key2 += 1;
            $key = ord("A");
            $colum = chr($key2).chr($key);//超過26個字母時才會啟用  
        }else{
            if($key2>=ord("A")){
                $colum = chr($key2).chr($key);//超過26個字母時才會啟用  
            }else{
                $colum = chr($key);
            }
        }
 
            $model->setCellValue($colum . '1', $v);
            $key++;
        }
        $column = 2;  //從第二行開始
      foreach($data as $key => $rows){ //行寫入  
        $span = ord("A");  
        $span2 = ord("@");
        foreach ($rows as $m => $n) {
             foreach($title as $k=>$v){  
             if($span>ord("Z")){  
                $span2 += 1;  
                $span = ord("A");  
           $j = chr($span2).chr($span);//超過26個字母時才會啟用  
            }else{  
                if($span2>=ord("A")){  
                    $j = chr($span2).chr($span);  
                }else{  
                    $j = chr($span);  
                }  
            }
            }   
                //dump($j.$column.'|'.$n);
                $model->setCellValue($j . $column, $n);
               //數(shù)據(jù)從第二行開始 A2,B2,C2,D2… 開始循環(huán)
                $span++;         
         }
 
  
        $column++;  
    }  
    //exit;
        $objPHPExcel->getActiveSheet()->setTitle('siteape');
        $objPHPExcel->setActiveSheetIndex(0);
        header('Content-Type: applicationnd.ms-excel');
        header('Content-Disposition: attachment;filename="' . $this->excelFilename . '.xls"');
        header('Cache-Control: max-age=0');
        $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
        $objWriter->save('php://output');
        exit;
    }
 
    /**
     * Excel讀取
     * @param $begin 開始讀取的行數(shù)
     * @return array|string
     */
    function excelImport($begin) {
        require_once('PHPExcel.php');
        $filename = $this->getRealFile($this->excelFilename);
        //建立reader對象
        $PHPReader = new PHPExcel_Reader_Excel2007();
        if (!$PHPReader->canRead($filename)) {
            $PHPReader = new PHPExcel_Reader_Excel5();
            if (!$PHPReader->canRead($filename)) {
                return array();
            }
        }
        //建立excel對象,此時你即可以通過excel對象讀取文件,也可以通過它寫入文件
        $PHPExcel = $PHPReader->load($filename);
        /*讀取excel文件中的第一個工作表*/
        $currentSheet = $PHPExcel->getSheet(0);
        /*取得最大的列號*/
        $allColumn = $currentSheet->getHighestColumn();
        /*取得一共有多少行*/
        $allRow = $currentSheet->getHighestRow();
        $returnCell = '';
        //循環(huán)讀取每個單元格的內(nèi)容。注意行從1開始,列從A開始
        for ($rowIndex = $begin; $rowIndex <= $allRow; $rowIndex++) {
            for ($colIndex = 'A'; $colIndex <= $allColumn; $colIndex++) {
                $addr = $colIndex . $rowIndex;
                $cell = $currentSheet->getCell($addr)->getCalculatedValue();
                if ($cell instanceof PHPExcel_RichText) {
                    //富文本轉(zhuǎn)換字符串
                    $returnCell[$rowIndex][$colIndex] = $cell->__toString();
                } else {
                    $returnCell[$rowIndex][$colIndex] = $cell;
                }
            }
        }
        return $returnCell;
    }
 
    /**
     * 獲取正確的路徑
     * @param $file
     * @return string
     */
    public function getRealFile($file) {
        $file = $file ? $file : $this->excelFilename;
        $error = '';
        if (substr($file, 0, 4) == 'http') {
            $realfile = $file;
        } elseif (!$file) {
            $error = '請指定文件路徑';
        } elseif (file_exists($file)) {
            $realfile = $file;
        } elseif (file_exists('.' . $file)) {
            $realfile = '.' . $file;
        } elseif (file_exists('..' . $file)) {
            $realfile = '..' . $file;
        } else {
            $error = '您輸入的文件不存在';
        }
        if ($error != '') {
            try {
                throw new Exception($error);
            } catch (Exception $e) {
                echo $e->getMessage();
            }
        } else {
            return $realfile;
        }
    }
 
    /**
     * 根據(jù)數(shù)據(jù)與字段匹配內(nèi)容生成標(biāo)準(zhǔn)的表頭
     * @param $titleArr 二維數(shù)組,field=>title
     * @param $data
     * @return array
     */
    public function getArrayTitle($titleArr, $data) {
        $reData = array();
        $firstData = $data[0]; //只需要取第一條數(shù)據(jù)即可
        if ($firstData) {
            foreach ($firstData as $k => $v) {
                $title = $titleArr[$k];
                $reData[] = $title;
            }
        } else {
            //直接輸入默認(rèn)順序的title
            foreach ($titleArr as $k => $v) {
                $reData[] = $v;
            }
        }
        return $reData;
    }
}
 
如沒特殊注明,文章均為方維網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請注明來自http://pdcharm.com/news/5437.html
舞钢市| 桃园县| 秭归县| 平陆县| 宣汉县| 恩施市| 绥宁县| 大足县| 封开县| 喜德县| 梓潼县| 揭东县| 定陶县| 依安县| 岫岩| 板桥市| 丹凤县| 湄潭县| 砚山县| 宜宾市| 杨浦区| 弥勒县| 望江县| 房产| 广河县| 鲁山县| 香格里拉县| 蒙自县| 宣化县| 宁都县| 鄯善县| 都昌县| 罗定市| 永川市| 朝阳区| 鄂伦春自治旗| 离岛区| 延边| 嫩江县| 杭锦后旗| 富源县|