### 带有表头的Excel 导出
whz 2021-8-6
**位置:**
Common\Tools\ExcelTools.class.php
**参数:**
* @param $title array 标题
* @param $data array 内容 二维数组
* @param $filename string 文件名
* @param $header string 标题
* @param $conditions string 条件
* @param $conditions $h 条件行行高
* return resource;
*/
**调用:**
~~~
use Common\Tools\ExcelTools; // 调用封装Excel工具类
public function export() {
$title = array('姓名', '城市', '手机');
$data = array(
array('李明', '深圳', '13812345678'),
array('王伟', '深圳', '15887654321')
);
$filename = '同学通讯录';
$header = '二年级一班同学通讯录';
$conditions = '户籍:深圳';
$e = new ExcelTools();
$e->exportHeadExcel($title, $data , $filename , $header, $conditions);
}
~~~
**完整代码:**
~~~
/*
* 导出带有表头的Excel
*
* whz 2021-8-5
* @param $title array 标题
* @param $data array 内容 二维数组
* @param $filename string 文件名
* @param $header string 标题
* @param $conditions string 条件
* @param $conditions $h 条件行行高
* return resource;
*/
public function exportHeadExcel($title, $data, $filename, $header, $conditions, $h=30) {
$this->_title = $title;
$objPHPExcel = new \PHPExcel();
$chr = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','AA','AB','AC','AD','AE','AF','AG','AH','AI','AJ','AK'];
//Excel内容
$head_num = count($title);
$obj = $objPHPExcel->setActiveSheetIndex(0);
$obj->mergeCells('A1:'.$chr[$head_num-1].'1'); //第一行
$obj->setCellValue('A1',$header);
$obj->mergeCells('A2:'.$chr[$head_num-1].'2'); //第二行
$obj->setCellValue('A2',$conditions);
$objPHPExcel->getActiveSheet()->getStyle('A1')->getAlignment()->setHorizontal('center'); //水平居中
$objPHPExcel->getActiveSheet()->getStyle('A1')->getAlignment()->setVERTICAL('center');
$objPHPExcel->getActiveSheet()->getStyle('A1')->getFont()->setSize(20); //设置字体大小
$objPHPExcel->getActiveSheet()->getRowDimension('1')->setRowHeight(40);//行高
$objPHPExcel->getActiveSheet()->getRowDimension('2')->setRowHeight($h);//行高
$objPHPExcel->getActiveSheet()->getStyle('A2')->getAlignment()->setWrapText(true);
$active_sheet = $objPHPExcel->getActiveSheet();
if (!is_null($this->getTitle())) {
$i='A';
$j = 3;
foreach ($this->getTitle() as $key => $value) {
$active_sheet->setCellValue($i . $j, $value);
$i++;
}
$j++;
}
foreach ($data as $key => $value) {
$i = 'A';
foreach ($value as $k => $v) {
// setCellValueExplicit 修改单元格的值为文本格式,解决首位0被去掉的BUG
if (preg_match("/^[0]+\d+$/", $v)) {
$active_sheet->setCellValueExplicit($i . $j, $v, 'str');
} elseif(preg_match("/^\d{12,100}$/", $v)) {
$active_sheet->setCellValueExplicit($i . $j, $v, 'str');
} else {
$active_sheet->setCellValue($i . $j, $v);
}
$i++;
}
$j++;
}
$filename =$filename.date('YmdHis',time());
// $objWrite = \PHPExcel_IOFactory::createWriter($phpExcel,"Excel2007");
$objWrite = \PHPExcel_IOFactory::createWriter($objPHPExcel, "Excel5");
// $objWrite->save($filename);
ob_end_clean();//清空缓冲区并关闭输出缓冲,解决在Linux服务器导出始终乱码
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=$filename.xls");
header("Content-Type:application/octet-stream");
header("Content-Transfer-Encoding:binary");
header("Pragma:no-cache");
$objWrite->save('php://output');
exit();
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意规范
- 开发版本管理
- 开发流程
- 系统配置
- 阿里云服务器配置
- 计划任务配置说明
- 开发示例
- Page分页
- Search_param搜索结果赋值
- Add新增
- Edit编辑
- Ajax表单验证
- Ajax二级联动
- Excel 导出数据首位不去0的方法
- POS总部控制
- 下载CSV格式的模板
- 订单唯一码表和订单SKU表实收金额生成
- 快捷日期选择
- JS函数
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表单验证插件
- Address省市区插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多选框插件
- Toastr消息提示插件
- PalyAudit扫描声音提示插件
- WebUploader多图片上传插件
- Ueditor富文本编辑器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select门店多选搜索框
- 品牌A-Z排序多选brand_mc.html
- 供应商代码A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 问题反馈