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
1c46cdf0
Commit
1c46cdf0
authored
Sep 17, 2020
by
王源
🎧
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'shopify' into test
parents
7f40dd4b
85446694
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
3 deletions
+79
-3
AbstractShopify.php
src/Shopify/lib/AbstractShopify.php
+4
-3
Imager.php
src/Tools/Imager.php
+75
-0
No files found.
src/Shopify/lib/AbstractShopify.php
View file @
1c46cdf0
...
...
@@ -260,12 +260,13 @@ abstract class AbstractShopify
/**
* 分页
* @param null $url
* @return ['data' => [数据], 'next_link' => '下一页链接']
* @param array $urlParams
* @return mixed ['data' => [数据], 'next_link' => '下一页链接']
* @throws Exception
*/
public
function
page
(
$url
=
null
)
public
function
page
(
$url
=
null
,
$urlParams
=
[]
)
{
if
(
!
$url
)
$url
=
$this
->
generateUrl
();
if
(
!
$url
)
$url
=
$this
->
generateUrl
(
$urlParams
);
$response
=
HttpRequestJson
::
get
(
$url
,
$this
->
httpHeaders
);
return
$this
->
processPageResponse
(
$response
,
$this
->
pluralizeKey
);
}
...
...
src/Tools/Imager.php
0 → 100644
View file @
1c46cdf0
<?php
/**
* Created by PhpStorm.
* User: Zero
* Date: 2020/9/17
* Time: 8:40
*/
namespace
Meibuyu\Micro\Tools
;
use
Exception
;
/**
* 图片工具类
* Class Imager
* @package Meibuyu\Micro\Tools
*/
class
Imager
{
/**
* 图片转base64,暂不支持外部地址图片
* @param $path
* @param bool $noPrefix 不需要前缀
* @return string
* @throws Exception
*/
public
static
function
img2Base64
(
$path
,
$noPrefix
=
false
)
{
$path
=
self
::
parsePath
(
$path
);
if
(
file_exists
(
$path
))
{
$fp
=
fopen
(
$path
,
"r"
);
// 图片是否可读权限
if
(
$fp
)
{
$imgInfo
=
getimagesize
(
$path
);
// 取得图片的大小,类型等
$content
=
fread
(
$fp
,
filesize
(
$path
));
$content
=
chunk_split
(
base64_encode
(
$content
));
// base64编码
if
(
$noPrefix
)
{
$base64
=
$content
;
}
else
{
$base64
=
'data:'
.
$imgInfo
[
'mime'
]
.
';base64,'
.
$content
;
// 合成图片的base64编码
}
fclose
(
$fp
);
return
$base64
;
}
else
{
throw
new
Exception
(
'图片读取失败'
);
}
}
else
{
throw
new
Exception
(
'图片不存在'
);
}
}
/**
* @param $path
* @return string
* @throws Exception
*/
public
static
function
parsePath
(
$path
)
{
if
(
strstr
(
$path
,
'http'
))
{
$appDomain
=
config
(
'app_domain'
);
if
(
strstr
(
$path
,
$appDomain
))
{
$path
=
str_replace
(
$appDomain
,
''
,
$path
);
}
else
{
throw
new
Exception
(
'暂不支持外部地址图片'
);
}
}
$documentRoot
=
config
(
'server.settings.document_root'
);
if
(
!
strstr
(
$path
,
$documentRoot
))
{
$path
=
trim
(
trim
(
$path
),
'/'
);
$path
=
$documentRoot
.
'/'
.
$path
;
}
return
$path
;
}
}
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