Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
meibuyu-micro
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
1
Merge Requests
1
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-micro
Commits
8da4aeea
Commit
8da4aeea
authored
Jul 02, 2021
by
王源
🎧
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.0' into 2.0
parents
60b3d9b6
9164e00f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
UploadManager.php
src/Manager/UploadManager.php
+1
-1
CurlRequest.php
src/Shopify/tools/CurlRequest.php
+1
-1
No files found.
src/Manager/UploadManager.php
View file @
8da4aeea
...
...
@@ -19,7 +19,7 @@ class UploadManager
public
static
$pathPrefix
=
'/upload/'
;
public
static
$options
=
[
'path'
=>
'default'
,
// 默认保存路径
'maxSize'
=>
10
0000000
,
// 文件大小
'maxSize'
=>
10
*
1024
*
1024
,
// 文件大小,10M
'temp'
=>
false
,
// 是否为临时文件
'mime'
=>
[
'jpeg'
,
'png'
,
'gif'
,
'jpg'
,
'svg'
,
'txt'
,
'pdf'
,
'xlsx'
,
'xls'
,
'doc'
,
'docx'
,
'rar'
,
'zip'
,
'csv'
],
// 允许上传的文件类型
];
...
...
src/Shopify/tools/CurlRequest.php
View file @
8da4aeea
...
...
@@ -12,7 +12,7 @@ class CurlRequest
$ch
=
curl_init
();
curl_setopt
(
$ch
,
CURLOPT_URL
,
$url
);
curl_setopt
(
$ch
,
CURLOPT_RETURNTRANSFER
,
1
);
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
5
0
);
// 设置超时限制防止死循环
curl_setopt
(
$ch
,
CURLOPT_TIMEOUT
,
10
0
);
// 设置超时限制防止死循环
curl_setopt
(
$ch
,
CURLOPT_HEADER
,
true
);
curl_setopt
(
$ch
,
CURLOPT_USERAGENT
,
'PHPClassic/PHPShopify'
);
$headers
=
[];
...
...
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