|
@@ -168,3 +168,129 @@ if (!function_exists('UploadImg')) {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+//导出文件成压缩包
|
|
|
+if (!function_exists('excel_save')) {
|
|
|
+ function excel_save($fileName = '', $headArr = [], $data = [])
|
|
|
+ {
|
|
|
+ $objPHPExcel = new PHPExcel();
|
|
|
+ $objPHPExcel->getProperties();
|
|
|
+ $keyA = 0; // 设置表头
|
|
|
+ foreach ($headArr as $v) {
|
|
|
+ $colum = PHPExcel_Cell::stringFromColumnIndex($keyA);
|
|
|
+ $objPHPExcel->setActiveSheetIndex(0)->setCellValue($colum . '1', $v);
|
|
|
+ $keyA += 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ $column = 2;
|
|
|
+ $objActSheet = $objPHPExcel->getActiveSheet();
|
|
|
+
|
|
|
+ foreach ($data as $key => $rows) { // 行写入
|
|
|
+ $span = 0;
|
|
|
+ foreach ($rows as $keyName => $value) { // 列写入
|
|
|
+ //判断数据是否有数组,如果有数组,转换成字符串
|
|
|
+
|
|
|
+ if (is_array($value)) $value = implode("、", $value);
|
|
|
+
|
|
|
+ $objActSheet->setCellValue(PHPExcel_Cell::stringFromColumnIndex($span) . $column, $value);
|
|
|
+ $span++;
|
|
|
+ }
|
|
|
+ $column++;
|
|
|
+ }
|
|
|
+ // var_dump($objActSheet->getActiveCell());
|
|
|
+ $file = $fileName . ".xls";
|
|
|
+ //$fileName .= "_" . date("Y_m_d", Request()->instance()->time()) . ".xls";
|
|
|
+ //$fileName = iconv("utf-8", "gb2312", $fileName); // 重命名表
|
|
|
+ $dir = root_path() . 'public/storage/report/' . date("YmdHis") . "/";
|
|
|
+ if (!is_dir($dir)) mkdir($dir, 0777, true);
|
|
|
+
|
|
|
+
|
|
|
+ PHPExcel_Settings::setCacheStorageMethod(PHPExcel_CachedObjectStorageFactory::cache_in_memory_serialized);
|
|
|
+ $objPHPExcel->setActiveSheetIndex(0); // 设置活动单指数到第一个表,所以Excel打开这是第一个表
|
|
|
+ $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
|
|
|
+ $objWriter->save($dir . $file); // 文件通过浏览器下载
|
|
|
+ $url = $dir . $file;
|
|
|
+ if (!file_exists($url)) throw new \think\Exception('文件生成失败');
|
|
|
+
|
|
|
+ $saveDir = root_path() . "public/storage/zip/";
|
|
|
+ if (!is_dir($saveDir)) mkdir($saveDir, 0777, true);
|
|
|
+
|
|
|
+// $datetime = date("YmdHis");
|
|
|
+ $file_dir = $saveDir . $fileName . ".zip";
|
|
|
+ # 5.1 文件打包,提示:使用本类,linux需开启zlib,windows需取消php_zip.dll前的注释
|
|
|
+ $zip = new \ZipArchive ();
|
|
|
+ # 5.2 文件不存在则生成一个新的文件 用CREATE打开文件会追加内容至zip
|
|
|
+ if ($zip->open($file_dir, \ZipArchive::OVERWRITE) !== true && $zip->open($file_dir, \ZipArchive::CREATE) !== true) throw new \think\Exception('无法打开文件或者文件创建失败');
|
|
|
+
|
|
|
+ # 5.3 批量写入压缩包
|
|
|
+ $zip->addEmptyDir($fileName);
|
|
|
+ // @$zip->addFile($v['file_path'], 'resume'.DIRECTORY_SEPARATOR.basename($headername));
|
|
|
+ @$zip->addFile($url, $fileName . DIRECTORY_SEPARATOR . basename($url));
|
|
|
+ # 5.4 关闭压缩包写入
|
|
|
+ $zip->close();
|
|
|
+ @deldir($dir);
|
|
|
+ # 6. 检查文件是否存在,并输出文件
|
|
|
+ if (!file_exists($file_dir)) throw new \think\Exception('导出文件不存在');
|
|
|
+
|
|
|
+ ob_clean();
|
|
|
+ flush();
|
|
|
+ header("Cache-Control: max-age=0");
|
|
|
+ header("Content-Description: File Transfer");
|
|
|
+ header('Content-disposition: attachment; filename=' . basename($file_dir)); # 处理文件名
|
|
|
+ header("Content-Type: application/octet-stream"); # 流文件输出
|
|
|
+ header("Content-Transfer-Encoding: binary"); # 告诉浏览器,这是二进制文件
|
|
|
+// header('Content-Length: ' . filesize($file_dir)); # 告诉浏览器,文件大小
|
|
|
+// readfile($file_dir); # 输出文件
|
|
|
+ $res = read_big_file($file_dir);
|
|
|
+ foreach ($res as $val) {
|
|
|
+ echo $val;
|
|
|
+ }
|
|
|
+ @ unlink($file_dir);
|
|
|
+ exit();
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+//读取大文件
|
|
|
+if (!function_exists('read_big_file')) {
|
|
|
+ function read_big_file(string $file = '')
|
|
|
+ {
|
|
|
+ $handle = fopen($file, 'rb');
|
|
|
+ while (feof($handle) === false) {
|
|
|
+ yield fgets($handle);
|
|
|
+ }
|
|
|
+ fclose($handle);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+//递归删除目录内的所有文件和本目录
|
|
|
+if (!function_exists('deldir')) {
|
|
|
+ function deldir($path)
|
|
|
+ {
|
|
|
+ //如果是目录则继续
|
|
|
+ if (is_dir($path)) {
|
|
|
+ //扫描一个文件夹内的所有文件夹和文件并返回数组
|
|
|
+ $p = scandir($path);
|
|
|
+ //如果 $p 中有两个以上的元素则说明当前 $path 不为空
|
|
|
+ if (count($p) > 2) {
|
|
|
+ foreach ($p as $val) {
|
|
|
+ //排除目录中的.和..
|
|
|
+ if ($val != "." && $val != "..") {
|
|
|
+ //如果是目录则递归子目录,继续操作
|
|
|
+ if (is_dir($path . $val)) {
|
|
|
+ //子目录中操作删除文件夹和文件
|
|
|
+ deldir($path . $val . '/');
|
|
|
+ } else {
|
|
|
+ //如果是文件直接删除
|
|
|
+ unlink($path . $val);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //删除目录
|
|
|
+ return rmdir($path);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|