浏览代码

优化单元格自适应宽度避免过长

yzh 4 年之前
父节点
当前提交
c63528886e
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/Pxlswrite.php

+ 6 - 1
src/Pxlswrite.php

@@ -64,6 +64,7 @@ class Pxlswrite extends Excel
     /**********************************************样式常量*****************************************************/
     protected $m_config = [
         'path' => __DIR__,
+        'maxColumnWidth' => 50,
     ];
     /**
      * [$fieldsCallback 设置字段回调函数]
@@ -187,7 +188,11 @@ class Pxlswrite extends Excel
         foreach ($_data as $k=>$v){
             foreach ($v as $key=>$value){
                 $length = strlen($value);
-                $this->m_autoSize[$key] = $this->m_autoSize[$key] >= $length ? $this->m_autoSize[$key] : $length;
+                $size = $this->m_autoSize[$key] >= $length ? $this->m_autoSize[$key] : $length;
+                if($size > $this->m_config['maxColumnWidth']){
+                    $size = $this->m_config['maxColumnWidth'];
+                }
+                $this->m_autoSize[$key] = $size;
             }
         }
     }