فهرست منبع

新增字段定义

yzh 4 سال پیش
والد
کامیت
dd7bdf0bf2
2فایلهای تغییر یافته به همراه85 افزوده شده و 20 حذف شده
  1. 15 2
      examples/export_demo.php
  2. 70 18
      src/Pxlswrite.php

+ 15 - 2
examples/export_demo.php

@@ -39,9 +39,18 @@ $defaultStyle = $fileObj->styleFormat()
     ->align(Pxlswrite::FORMAT_ALIGN_CENTER,Pxlswrite::FORMAT_ALIGN_VERTICAL_CENTER)
     ->toResource();
 
-$filePath = $fileObj->header(array('id', 'c1', 'c2', 'c3', 'c4','c5'))//设置表格头
+//定义字段
+$field = [
+    'id'=>['name'=>'title','callback'=>'myFormat'],//callback 回调处理格式化值 可以是函数/对象方法
+    'c1'=>['name'=>'age'],
+    'c2'=>['name'=>'year'],
+    'c3'=>['name'=>'kk'],
+    'c4'=>['name'=>'ll'],
+    'c5'=>['name'=>'aa']
+];
+$filePath = $fileObj->field($field)//设置字段&表格头
     ->defaultFormat($defaultStyle)//全局默认样式
-    ->setDataByGenerator('generateData',$pushHandle)//设置数据,$pushHandle 用于推送,可不传
+    ->setDataByGenerator('generateData',$pushHandle)//设置数据 回调生成器方法获取数据,$pushHandle 用于推送,可不传
     ->setRow('A1:A3', 80, $leftStyle)//设置范围行样式
     ->setRow('A2',50,$borderStyle)//设置指定某一行样式
     ->setRow('A3',50,$colorStyle)//设置文字颜色
@@ -73,3 +82,7 @@ function generateData(){
         yield $db->get_records_sql("select * from sheet1 limit {$i},{$step}", null, PDO::FETCH_ASSOC);
     }
 }
+//格式化字段值
+function myFormat($v,$valuse){
+    return $v.$valuse['c1'];
+}

+ 70 - 18
src/Pxlswrite.php

@@ -6,6 +6,7 @@
 namespace Pxlswrite;
 set_time_limit(0);
 
+use http\Header;
 use Pxlswrite\WebSocket\WebSocketClient;
 use \Vtiful\Kernel\Format;
 use \Vtiful\Kernel\Excel;
@@ -65,6 +66,12 @@ class Pxlswrite extends Excel
     protected $m_config = [
         'path' => __DIR__,
     ];
+    /**
+     * [$fieldsCallback 设置字段回调函数]
+     * @var array
+     */
+    public $fieldsCallback = [];
+    public $header = [];
 
     /**
      * Pxlswrite constructor.
@@ -90,6 +97,41 @@ class Pxlswrite extends Excel
         return parent::fileName($_fileName, $_tableName);
     }
 
+    /**
+     * 设置字段
+     * @param $field
+     * @return $this
+     */
+    public function field($field)
+    {
+        if (!empty($field)) {
+            $this->fieldsCallback = array_merge($this->fieldsCallback, $field);
+        }
+        if (empty($this->header)) {
+            $this->header(array_column($field, 'name'));
+        }
+        return $this;
+    }
+
+    /**
+     * 设置表格头
+     * @param $header
+     * @param null $format_handle
+     * @return mixed
+     */
+    public function header($header, $format_handle = NULL)
+    {
+        if(count($header) !== count($header, 1)){
+            echo '数据格式错误,必须是一位数索引数组';exit();
+        }
+        $this->header = $header;
+        if ($format_handle) {
+            return parent::header($header, $format_handle);
+        } else {
+            return parent::header($header);
+        }
+    }
+
     /**
      * 设置表格数据
      * @param array $_data 二维索引数组
@@ -109,16 +151,25 @@ class Pxlswrite extends Excel
     public function setDataByGenerator($_generator, WebSocketClient $_pushHandle = null)
     {
         $count = 0;
-        foreach ($_generator() as $item) {
+        foreach (call_user_func($_generator) as $item) {
             //循环逐行写入excel
-            foreach ($item as $value) {
-                $this->data([array_values($value)]);//二维索引数组
+            foreach ($item as $key => $value) {
+                if(!empty($this->fieldsCallback)){
+                    $temp = [];
+                    foreach ($this->fieldsCallback as $k => $v) {
+                        $temp[$k] = isset($value[$k]) && !empty($value[$k]) ? $value[$k] : '';
+                        if (isset($v['callback'])) {
+                            $temp[$k] = call_user_func($v['callback'], $temp[$k], $value);
+                        }
+                    }
+                    $this->data([array_values($temp)]);//二维索引数组
+                }else{
+                    $this->data([array_values($value)]);//二维索引数组
+                }
             }
             //推送消息
-            if ($_pushHandle && $_pushHandle->m_receiverFd) {
-                $count += count($item);
-                $_pushHandle->send(['status' => 'processing', 'process' => $count]);
-            }
+            $count += count($item);
+            $this->push($_pushHandle,$count);
         }
         return $this;
     }
@@ -136,22 +187,22 @@ class Pxlswrite extends Excel
             $count++;
             if ($count % 10000 == 0) {
                 //回调数据插入的方法
-                $_func($data);
+                call_user_func($_func,$data);
                 //消息推送
-                if ($_pushHandle && $_pushHandle->m_receiverFd) {
-                    $_pushHandle->send(['status' => 'processing', 'process' => $count]);
-                }
+                $this->push($_pushHandle,$count);
                 unset($data);
             }
         }
         if (!empty($data)) {
-            $_func($data);
-            if ($_pushHandle && $_pushHandle->m_receiverFd) {
-                $_pushHandle->send(['status' => 'processing', 'process' => $count]);
-            }
+            call_user_func($_func,$data);
+            $this->push($_pushHandle,$count);
+        }
+    }
+    public function push($_pushHandle,$count){
+        if ($_pushHandle && $_pushHandle->m_receiverFd) {
+            $_pushHandle->send(['status' => 'processing', 'process' => $count]);
         }
     }
-
     /**
      * 文件下载
      * @param $_filePath 文件绝对路径
@@ -161,8 +212,9 @@ class Pxlswrite extends Excel
     public function download($_filePath, $_isDelete = true)
     {
 //        setcookie("loadingFlag",1);
-        if(dirname($_filePath) != $this->m_config['path']){
-            echo '未知文件路径';exit();
+        if (dirname($_filePath) != $this->m_config['path']) {
+            echo '未知文件路径';
+            exit();
         }
         header("Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
         header('Content-Disposition: attachment;filename="' . end(explode('/', $_filePath)) . '"');