最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<?php
/**
 * link: http://www.zjhejiang.com/
 * copyright: Copyright (c) 2018 浙江禾匠信息科技有限公司
 * author: wxf
 */
 
namespace app\core;
 
 
use yii\base\Component;
 
class CsvExport extends Component
{
    /**
     * 导出excel(csv)
     * @data 导出数据
     * @headlist 第一行,列名
     * @fileName 输出Excel文件名
     */
    public function export($data = array(), $headlist = array(), $fileName)
    {
        try {
            $fileName = urlencode($fileName);
 
            header('Content-Type: application/vnd.ms-excel');
            header('Content-Disposition: attachment;filename*=utf-8' . "'zh_cn'" . iconv('utf-8', 'gbk', $fileName) . '.csv');
            header('Cache-Control: max-age=0');
 
            //打开PHP文件句柄,php://output 表示直接输出到浏览器
            $fp = fopen('php://output', 'a');
 
            //输出Excel列名信息
            foreach ($headlist as $key => $value) {
                //CSV的Excel支持GBK编码,一定要转换,否则乱码
                $headlist[$key] = iconv('utf-8', 'gbk', $value);
            }
 
            //将数据通过fputcsv写到文件句柄
            fputcsv($fp, $headlist);
 
            //计数器
            $num = 0;
 
            //每隔$limit行,刷新一下输出buffer,不要太大,也不要太小
            $limit = 100000;
 
            //逐行取出数据,不浪费内存
            $count = count($data);
            for ($i = 0; $i < $count; $i++) {
                $num++;
 
                //刷新一下输出buffer,防止由于数据过多造成问题
                if ($limit == $num) {
                    ob_flush();
                    flush();
                    $num = 0;
                }
 
                $row = $this->handleRowData($data[$i]);
                fputcsv($fp, $row);
            }
 
            exit();
        } catch (\Exception $exception) {
            \Yii::error($exception);
        }
    }
 
    /**
        * !!!!!!!!!!!!!!!!!!!!!!!
     * 已废弃 不要再使用
     * !!!!!!!!!!!!!!!!!!!!!!!
     * 同时导出多个csv文件时,需要弄成压缩包一起下载
     * @data 导出数据
     * @headlist 第一行,列名
     */
    public function exportMultiple($data = array(), $headlist = array())
    {
        try {
            // create a temporary file
            $fp = fopen('php://temp/maxmemory:1048576', 'w');
            if (false === $fp) {
                die('Failed to create temporary file');
            }
 
            //输出Excel列名信息
            foreach ($headlist as $key => $value) {
                //CSV的Excel支持GBK编码,一定要转换,否则乱码
                $headlist[$key] = iconv('utf-8', 'gbk', $value);
            }
 
            //将数据通过fputcsv写到文件句柄
            fputcsv($fp, $headlist);
 
            //计数器
            $num = 0;
 
            //每隔$limit行,刷新一下输出buffer,不要太大,也不要太小
            $limit = 100000;
 
            //逐行取出数据,不浪费内存
            $count = count($data);
            for ($i = 0; $i < $count; $i++) {
                $num++;
 
                //刷新一下输出buffer,防止由于数据过多造成问题
                if ($limit == $num) {
                    ob_flush();
                    flush();
                    $num = 0;
                }
 
                $row = $this->handleRowData($data[$i]);
                fputcsv($fp, $row);
            }
 
            rewind($fp);
            return $fp;
        } catch (\Exception $exception) {
            \Yii::error($exception);
        }
    }
 
    /**
     * !!!!!!!!!!!!!!!!!!!!!!!
     * 已废弃 不要再使用
     * !!!!!!!!!!!!!!!!!!!!!!!
     *
     * 异步处理超大csv数据
     * @data 导出数据
     * @headlist 第一行,列名
     * @fileName 输出Excel文件名
     */
    public function ajaxExport($data = array(), $headlist = array(), $fileName, $filePath = '/web/csv/')
    {
        try {
            $fileName = $fileName . '.csv';
            $newFilePath = \Yii::$app->basePath . $filePath;
 
            if (!file_exists($newFilePath . $fileName)) {
                if (!is_dir($newFilePath)) {
                    mkdir($newFilePath, 0777, true);
                }
                $fp = fopen($newFilePath . $fileName, 'a+');
                //输出Excel列名信息
                foreach ($headlist as $key => $value) {
                    //CSV的Excel支持GBK编码,一定要转换,否则乱码
                    $headlist[$key] = iconv('utf-8', 'gbk', $value);
                }
 
                //将数据通过fputcsv写到文件句柄
                fputcsv($fp, $headlist);
            }
 
            $fp = fopen($newFilePath . $fileName, 'a+');
 
            //计数器
            $num = 0;
 
            //每隔$limit行,刷新一下输出buffer,不要太大,也不要太小
            $limit = 100000;
 
            //逐行取出数据,不浪费内存
            $count = count($data);
            for ($i = 0; $i < $count; $i++) {
                $num++;
 
                //刷新一下输出buffer,防止由于数据过多造成问题
                if ($limit == $num) {
                    ob_flush();
                    flush();
                    $num = 0;
                }
 
                $row = $this->handleRowData($data[$i]);
                fputcsv($fp, $row);
            }
 
            return $fileName;
        } catch (\Exception $exception) {
            \Yii::error($exception);
        }
    }
 
    /**
     * 异步处理超大csv数据
     * @data 导出数据
     * @headlist 第一行,列名
     * @fileName 输出文件名
     * @id 建议 mall + mch_id 拼接
     */
    public function newAjaxExport($data = array(), $headlist = array(), $fileName, $id)
    {
        try {
            // 检查目录是否存在
            $filePath = sprintf('%s%s%s%s', \Yii::$app->basePath, '/web/csv/', $id, '/');
            if (!is_dir($filePath)) {
                mkdir($filePath, 0777, true);
            }
 
            $fileName = sprintf('%s%s', $filePath, $fileName);
            if (!file_exists($fileName)) {
                $fp = fopen($fileName, 'a+');
                //输出Excel列名信息
                foreach ($headlist as $key => $value) {
                    //CSV的Excel支持GBK编码,一定要转换,否则乱码
                    $headlist[$key] = iconv('utf-8', 'gbk', $value);
                }
                //将数据通过fputcsv写到文件句柄
                fputcsv($fp, $headlist);
                fclose($fp);
            }
            $fp = fopen($fileName, 'a+');
            flock($fp,LOCK_EX);
 
            //计数器
            $num = 0;
 
            //每隔$limit行,刷新一下输出buffer,不要太大,也不要太小
            $limit = 100000;
 
            //逐行取出数据,不浪费内存
            $count = count($data);
            for ($i = 0; $i < $count; $i++) {
                $num++;
 
                //刷新一下输出buffer,防止由于数据过多造成问题
                if ($limit == $num) {
                    ob_flush();
                    flush();
                    $num = 0;
                }
 
                $row = $this->handleRowData($data[$i]);
                fputcsv($fp, $row);
            }
            fclose($fp);
 
            return $fileName;
        } catch (\Exception $exception) {
            \Yii::error($exception);
        }
    }
 
    //判断是否含有英文逗号,英文引号
    public function check($value)
    {
        if (!$this->checkJson($value)) {
            $isInt = is_int($value) ? true : false;
            $isFloat = is_float($value) ? true : false;
 
            $value = rtrim($value, "\r\n");
            $value = str_replace(",", ",", $value);
 
            $value = is_string($value) ? $value . "\t" : $value;
            $value = $isInt ? intval($value) : $value;
            $value = $isFloat ? floatval($value) : $value;
        }
        return $value;
    }
 
    public function handleRowData($data)
    {
        $row = $data;
        foreach ($row as $key => $value) {
            $value = $this->check($value);
            $row[$key] = mb_convert_encoding($value, 'GBK', 'UTF-8');
        }
        return $row;
    }
 
    // 判断是否为json数据
    private function checkJson($value)
    {
        $data = json_decode($value);
        if ($data && (is_object($data)) || is_array($data)) {
            return true;
        }
 
        return false;
    }
 
    //下载批量发货模板
    public function downloadBatchSend($out_filename)
    {
        $file_url = \Yii::$app->basePath . DIRECTORY_SEPARATOR . 'web' . DIRECTORY_SEPARATOR . 'statics' . DIRECTORY_SEPARATOR . 'text' . DIRECTORY_SEPARATOR . 'batch_send_default.xlsx';
 
        header('Accept-Ranges: bytes');
        header('Accept-Length: ' . filesize($file_url));
        header('Content-Transfer-Encoding: binary');
        header('Cache-Control: max-age=0');
        header('Content-Disposition: attachment; filename=' . $out_filename);
        header('Content-Type: application/vnd.ms-excel; name=' . $out_filename);
        if (is_file($file_url) && is_readable($file_url)) {
            $file = fopen($file_url, "r");
            echo fread($file, filesize($file_url));
            fclose($file);
        }
    }
}