Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-rpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
without authentication
meibuyu-rpc
Commits
16e6ad5d
Commit
16e6ad5d
authored
Nov 03, 2020
by
jiangkebao
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master_export' into test
parents
e99bd094
15fd5eaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
Exporter.php
src/Tools/Exporter.php
+13
-0
No files found.
src/Tools/Exporter.php
View file @
16e6ad5d
...
...
@@ -36,6 +36,11 @@ class Exporter
*/
CONST
DOWNLOAD_TYPE_SAVE_AND_DOWNLOAD
=
3
;
/**
* 保存文件,返回文件绝对路径
*/
CONST
DOWNLOAD_TYPE_RETURN_ABSOLUTE_PATH
=
4
;
CONST
EXPORTER_TYPE_CSV
=
1
;
CONST
EXPORTER_TYPE_XLS
=
2
;
CONST
EXPORTER_TYPE_XLSX
=
3
;
...
...
@@ -375,6 +380,14 @@ class Exporter
$objWriter
->
save
(
$fileReadPath
);
return
$this
->
config
->
get
(
'app_domain'
)
.
str_replace
(
$this
->
rootPath
,
''
,
$fileReadPath
);
break
;
case
self
::
DOWNLOAD_TYPE_RETURN_ABSOLUTE_PATH
:
$filePath
=
$this
->
rootPath
.
"/export/"
;
!
is_dir
(
$filePath
)
&&
mkdir
(
$filePath
,
0777
,
true
);
$fileReadPath
=
$filePath
.
$filename
.
'-'
.
date
(
'YmdHis'
)
.
"."
.
strtolower
(
$this
->
fileType
);
$objWriter
->
save
(
$fileReadPath
);
return
config
(
'server.settings.document_root'
)
.
"/export/"
.
$filename
.
'-'
.
date
(
'YmdHis'
)
.
"."
.
strtolower
(
$this
->
fileType
);
break
;
default
:
throw
new
\Exception
(
'不支持此种下载类型'
);
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment