Showing
4 changed files
with
5 additions
and
5 deletions
@@ -943,7 +943,7 @@ class Helpers | @@ -943,7 +943,7 @@ class Helpers | ||
943 | */ | 943 | */ |
944 | public static function getUrlSafe($url) | 944 | public static function getUrlSafe($url) |
945 | { | 945 | { |
946 | - if (stripos($url, 'http://')) { | 946 | + if (stripos($url, 'http://') !== false) { |
947 | return '//' . ltrim(strtr($url, array('http://' => '', 'https://' => '')), '//'); | 947 | return '//' . ltrim(strtr($url, array('http://' => '', 'https://' => '')), '//'); |
948 | } | 948 | } |
949 | 949 |
@@ -1109,7 +1109,7 @@ class Helpers | @@ -1109,7 +1109,7 @@ class Helpers | ||
1109 | */ | 1109 | */ |
1110 | public static function getUrlSafe($url) | 1110 | public static function getUrlSafe($url) |
1111 | { | 1111 | { |
1112 | - if (stripos($url, 'http://')) { | 1112 | + if (stripos($url, 'http://') !== false) { |
1113 | return '//' . ltrim(strtr($url, array('http://' => '', 'https://' => '')), '//'); | 1113 | return '//' . ltrim(strtr($url, array('http://' => '', 'https://' => '')), '//'); |
1114 | } | 1114 | } |
1115 | 1115 |
@@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
7 | */ | 7 | */ |
8 | 8 | ||
9 | namespace WebPlugin; | 9 | namespace WebPlugin; |
10 | - | 10 | +use WebPlugin\Helpers; |
11 | class Images | 11 | class Images |
12 | { | 12 | { |
13 | 13 | ||
@@ -251,7 +251,7 @@ class Images | @@ -251,7 +251,7 @@ class Images | ||
251 | $imageUrl = preg_replace('@\?imageMogr2.+@is', '', $imageUrl); | 251 | $imageUrl = preg_replace('@\?imageMogr2.+@is', '', $imageUrl); |
252 | } | 252 | } |
253 | } | 253 | } |
254 | - return $imageUrl; | 254 | + return Helpers::getUrlSafe($imageUrl); |
255 | } | 255 | } |
256 | 256 | ||
257 | /** | 257 | /** |
@@ -819,7 +819,7 @@ class ItemModel | @@ -819,7 +819,7 @@ class ItemModel | ||
819 | 819 | ||
820 | // 测量方式 | 820 | // 测量方式 |
821 | if (!empty($sizeInfo['sizeImage'])) { | 821 | if (!empty($sizeInfo['sizeImage'])) { |
822 | - $size['sizeImg'] = $sizeInfo['sizeImage']; | 822 | + $size['sizeImg'] = Helpers::getUrlSafe($sizeInfo['sizeImage']); |
823 | } | 823 | } |
824 | return $size; | 824 | return $size; |
825 | } | 825 | } |
-
Please register or login to post a comment