export_demo.php 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. //定义字段
  37. $field = [
  38. 'id'=>['name'=>'title'],
  39. 'c1'=>['name'=>'age'],
  40. 'c2'=>['name'=>'year'],
  41. 'c3'=>['name'=>'kk'],
  42. 'c4'=>['name'=>'ll'],
  43. 'c5'=>['name'=>'aa','callback'=>'myFormat']//callback 回调处理格式化值 可以是函数/对象方法
  44. ];
  45. $filePath = $fileObj->field($field)//设置字段&表格头
  46. ->defaultFormat($defaultStyle)//全局默认样式
  47. ->setDataByGenerator('generateData',$pushHandle)//设置数据 回调生成器方法获取数据,$pushHandle 用于推送,可不传
  48. ->setRow('A1:A3', 80, $leftStyle)//设置范围行样式
  49. ->setRow('A2',50,$borderStyle)//设置指定某一行样式
  50. ->setRow('A3',50,$colorStyle)//设置文字颜色
  51. ->setRow('A4',40,$backgroundStyle)//设置背景色
  52. ->setColumn('F:F',40,$numberStyle)//设置列样式
  53. ->mergeCells('A1:C1', 'Merge cells',$fileObj->styleFormat()->align(Pxlswrite::FORMAT_ALIGN_CENTER,Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)->toResource())//合并单元格
  54. ->output();//输出excel文件到磁盘
  55. //单元格插入文本
  56. //for ($index = 0; $index < 10; $index++) {
  57. // $fileObj->insertText($index, 0, 'viest');
  58. // $fileObj->insertText($index, 1, 10000, '#,##0');
  59. //}
  60. //$filePath = $fileObj->output();
  61. $memory = floor((memory_get_peak_usage()) / 1024 / 1024) . "MB";#10M 22S
  62. $execute_time = time() - $time . 's';
  63. //同步下载
  64. //$fileObj->download($filePath);
  65. //ajax请求返回下载地址
  66. echo json_encode(['code' => 1, 'msg' => '导出完毕', 'url' => '/download.php?file=' . $filePath, 'data' => ['memory' => $memory, 'excute_time' => $execute_time]]);
  67. //数据生成器--封装模拟数据获取的方法
  68. function generateData(){
  69. $db = DB::getInstance();
  70. $step = 10000;
  71. for ($i = 0; $i < 1000000; $i = $i + $step) {
  72. yield $db->get_records_sql("select * from sheet1 limit {$i},{$step}", null, PDO::FETCH_ASSOC);
  73. }
  74. }
  75. //格式化字段值
  76. function myFormat($v,$values){
  77. return $v.'自定义格式化-'.$values['id'];
  78. }