Commit 14e7c9fd authored by fuyunnan's avatar fuyunnan

Merge branch 'master' into test

parents 34eebd2e f381fbb1
...@@ -107,8 +107,9 @@ class Drawer ...@@ -107,8 +107,9 @@ class Drawer
*/ */
public function downLoadImgWebpChannel($url, $path = '') public function downLoadImgWebpChannel($url, $path = '')
{ {
$originUrl = $url;
//如果shopify 去掉版本号 //如果shopify 去掉版本号
if (strpos($url, 'cdn.shopify.com') !== false) { if (strpos($url, 'shopify') !== false) {
$url = substr($url, 0, strpos($url, '?v=')); $url = substr($url, 0, strpos($url, '?v='));
} }
$savePath = $this->rootPath . '/download/images/' . ($path ? $path . '/' : $this->savePath); $savePath = $this->rootPath . '/download/images/' . ($path ? $path . '/' : $this->savePath);
...@@ -120,7 +121,7 @@ class Drawer ...@@ -120,7 +121,7 @@ class Drawer
$filePath = $savePath . "$filename.$ext"; $filePath = $savePath . "$filename.$ext";
$ch = curl_init(); $ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 信任任何证书 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 信任任何证书
curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_URL, $originUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
$file = curl_exec($ch); $file = curl_exec($ch);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment