您好,登錄后才能下訂單哦!
小編給大家分享一下PHPSpreadsheet導(dǎo)出Excel超過(guò)26列怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
excel 行列表示方式
xexcel 的列的表示規(guī)則從 A,B,C 一直到 Z,當(dāng)超過(guò) 26 個(gè)字母的時(shí)候用兩個(gè)字母進(jìn)行表示:AA,AB,AC…AZ,BA,BB,BC…BZ…,當(dāng)超過(guò) 702 時(shí)又是另外一個(gè)種表示方法。
行的表示就是 1,2,3,4,5,6,7…. 這樣下去。在 phpexcel 中要設(shè)一個(gè)單元格的值通過(guò) setCellValue 方法就可以了,其中第一個(gè)參數(shù)表示列和行的拼接的值,如:A1,B1,AA1,BA1 這樣。
知道這個(gè)之后,只要根據(jù) $i/26 的整數(shù)部分和模部分計(jì)算出列的表示字母就可以了。
下面是解決方法
<?php namespace AppLibrariesExcel; use PhpOfficePhpSpreadsheetCellDataType; use PhpOfficePhpSpreadsheetSpreadsheet; use PhpOfficePhpSpreadsheetWriterXlsx; class Export { protected $data_type; protected $spread_sheet; protected $x_lsx; public function __construct(DataType$data_type, Spreadsheet$spread_sheet, Xlsx$x_lsx) { $this->data_type= $data_type; $this->spread_sheet= $spread_sheet; $this->x_lsx= $x_lsx; } /** * @ description 文件導(dǎo)出 * @ date 2019-05-06 * @ array $field_name 字段名稱 漢字(索引數(shù)組) ['產(chǎn)品','姓名'] * @ array $data 數(shù)據(jù) ['a' => data, 'b' => data] * @ array $field_column 數(shù)據(jù)中的下標(biāo)名稱 字段數(shù)據(jù) (索引數(shù)組) ['a','b'] * @ string $file_name 文件名稱 * @ array $arr 需要轉(zhuǎn)換為數(shù)字的$field_column中的key(索引數(shù)組) * @ return file */ public function export($field_name,$data,$field_column,$file_name,$field_numeric_keys= []) { @ob_clean(); if (empty($field_name)|| empty($field_column)|| empty($data)|| empty($file_name))return false; $sheet= $this->spread_sheet->getActiveSheet(); //設(shè)置header $i= 0; foreach ($field_name as $value) { $cellName= self::stringFromColumnIndex($i). "1"; $sheet->setCellValue($cellName, $value)->calculateColumnWidths(); $sheet->getColumnDimension(self::stringFromColumnIndex($i))->setWidth(15); $i++; } //設(shè)置value $len= count($field_column); foreach ($data as $key=> $item) { $row= 2 + ($key* 1); for ($i= 0; $i< $len; $i++) { $sheet->setCellValueExplicit(self::stringFromColumnIndex($i). $row, $item[$field_column[$i]]??"", DataType::TYPE_STRING); if (isset($item[$field_column[$i]])&& !empty($field_numeric_keys)&& in_array($field_column[$i],$field_numeric_keys)) { $sheet->setCellValueExplicit(self::stringFromColumnIndex($i). $row, $item[$field_column[$i]]??"", DataType::TYPE_NUMERIC); } } } $writer= new Xlsx($this->spread_sheet); header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');//告訴瀏覽器輸出07Excel文件 header('Content-Disposition: attachment;filename="' . $file_name . '.xlsx"');//告訴瀏覽器輸出瀏覽器名稱 header('Cache-Control: max-age=0'); $writer->save('php://output'); @ob_flush(); @flush(); exit; } /** * @ description excel導(dǎo)出突破只能26個(gè)字段 * @ date 2019-05-07 * @ return string 字段 */ public static function stringFromColumnIndex($pColumnIndex = 0) { static $_indexCache= array(); if (!isset($_indexCache[$pColumnIndex])) { if ($pColumnIndex < 26) { $_indexCache[$pColumnIndex]= chr(65 + $pColumnIndex); }elseif ($pColumnIndex < 702) { $_indexCache[$pColumnIndex]= chr(64 + ($pColumnIndex / 26)). chr(65 + $pColumnIndex % 26); }else { $_indexCache[$pColumnIndex]= chr(64 + (($pColumnIndex - 26)/ 676)). chr(65 + ((($pColumnIndex - 26)% 676)/ 26)). chr(65 + $pColumnIndex % 26); } } return $_indexCache[$pColumnIndex]; } }
看完了這篇文章,相信你對(duì)“PHPSpreadsheet導(dǎo)出Excel超過(guò)26列怎么辦”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。