匯出excel表格 後台Proce"/> 匯出excel表格 後台Proce">
首先需要下載PHPExecel類別文件,幫助文件可以參考PHPExcel中文幫助手冊|PHPExcel使用方法。
下面直接上例子,是我自己寫的一個簡單的批量導出數據為excel的例子
#前台頁面 比較簡單,就是一個超鏈接,跳轉到處理頁面,超連結也可以跟一些參數(看需求)!
<a href="./Process1.php">导出excel表格</a>
後台Process.php頁面
expExcel(, 'PHPExcel.php' = ->getProperties()->setCreator("zxf") ->setLastModifiedBy("zxf") ->setTitle('数据EXCEL导出') ->setSubject('数据EXCEL导出') ->setDescription('导出数据') ->setKeywords("excel") ->setCategory("result file"); ->setActiveSheetIndex(0->->setCellValue('A1', '业主姓名'->setCellValue('B1', '密码'->setCellValue('C1', '手机号码'->setCellValue('D1', '地址'->getStyle('A1:D1')->getFont()->getColor()->setARGB(PHPExcel_Style_Color:: = 1( ++-> ->setCellValue('A'., ['name'->setCellValue('B'., ['pwd'->setCellValue('C'., ['phone'->setCellValue('D'., ['address'->setActiveSheetIndex(0('Content-Type: application/vnd.ms-excel'); ('Content-Disposition: attachment;filename="'..'.xls"'); ('Cache-Control: max-age=0'('Content-Type: text/html; charset=utf-8'); = PHPExcel_IOFactory::createWriter(, 'Excel5'); ->save('php://output'("Content-type:text/html;charset=utf-8" = @('localhost','root','') or ('连接数据库失败'('test',('set names utf8' = "select * from house" = ( = ( = ([] = = "用户表"expExcel(,)
使用PHPExcel匯出資料至此完畢,對於使用PHPExcel匯入到資料庫可以參考使用PHPExcel實作資料批次上傳到資料庫
以上是簡單的批量匯出資料為excel的例子的詳細內容。更多資訊請關注PHP中文網其他相關文章!