export_demo.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. require_once(__DIR__.'/../vendor/autoload.php');
  3. use Pxlswrite\DB\DB;
  4. use Pxlswrite\Pxlswrite;
  5. use Pxlswrite\WebSocket\WebSocketClient;
  6. $time = time();
  7. //实例化pxlswrite
  8. $fileObj = new Pxlswrite(['path' => __DIR__ . '/uploads']);
  9. //实例化WebSocketClient--需要推送进度才实例化
  10. $pushHandle = new WebSocketClient('ws://192.168.18.192:9502',$_GET['fd']);
  11. //创建excel文件
  12. $fileObj->fileName('123.xlsx');
  13. //定义样式
  14. $leftStyle = $fileObj->styleFormat()
  15. ->bold()
  16. ->align(Pxlswrite::FORMAT_ALIGN_LEFT, Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)
  17. ->toResource();
  18. $borderStyle = $fileObj->styleFormat()
  19. ->align(Pxlswrite::FORMAT_ALIGN_RIGHT, Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)
  20. ->border(Pxlswrite::BORDER_SLANT_DASH_DOT)
  21. ->toResource();
  22. $colorStyle = $fileObj->styleFormat()
  23. ->fontColor(Pxlswrite::COLOR_BLUE)
  24. ->toResource();
  25. $backgroundStyle = $fileObj->styleFormat()
  26. ->background(Pxlswrite::COLOR_RED)
  27. ->toResource();
  28. $numberStyle = $fileObj->styleFormat()
  29. ->number('#,##0')
  30. ->toResource();
  31. $defaultStyle = $fileObj->styleFormat()
  32. ->fontColor(Pxlswrite::COLOR_ORANGE)
  33. ->border(Pxlswrite::BORDER_DASH_DOT)
  34. ->align(Pxlswrite::FORMAT_ALIGN_CENTER,Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)
  35. ->toResource();
  36. $filePath = $fileObj->header(array('id', 'c1', 'c2', 'c3', 'c4','c5'))//设置表格头
  37. ->defaultFormat($defaultStyle)//全局默认样式
  38. ->setDataByGenerator('generateData',$pushHandle)//设置数据,$pushHandle 用于推送,可不传
  39. ->setRow('A1:A3', 80, $leftStyle)//设置范围行样式
  40. ->setRow('A2',50,$borderStyle)//设置指定某一行样式
  41. ->setRow('A3',50,$colorStyle)//设置文字颜色
  42. ->setRow('A4',40,$backgroundStyle)//设置背景色
  43. ->setColumn('B:B',50,$numberStyle)//设置列样式
  44. ->mergeCells('A1:C1', 'Merge cells',$fileObj->styleFormat()->align(Pxlswrite::FORMAT_ALIGN_CENTER,Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)->toResource())//合并单元格
  45. ->output();//输出excel文件到磁盘
  46. //单元格插入文本
  47. //for ($index = 0; $index < 10; $index++) {
  48. // $fileObj->insertText($index, 0, 'viest');
  49. // $fileObj->insertText($index, 1, 10000, '#,##0');
  50. //}
  51. //$filePath = $fileObj->output();
  52. $memory = floor((memory_get_peak_usage()) / 1024 / 1024) . "MB";#10M 22S
  53. $execute_time = time() - $time . 's';
  54. //同步下载
  55. //$fileObj->download($filePath);
  56. //ajax请求返回下载地址
  57. echo json_encode(['code' => 1, 'msg' => '导出完毕', 'url' => '/download.php?file=' . $filePath, 'data' => ['memory' => $memory, 'excute_time' => $execute_time]]);
  58. //数据生成器--封装数据获取的方法
  59. function generateData(){
  60. $db = DB::getInstance();
  61. $step = 10000;
  62. for ($i = 0; $i < 100000; $i = $i + $step) {
  63. yield $db->get_records_sql("select * from sheet1 limit {$i},{$step}", null, PDO::FETCH_ASSOC);
  64. }
  65. }