@@ -50,7 +50,7 @@ public static function isRelative(string $url): bool
50
50
}
51
51
52
52
/**
53
- * @param $str
53
+ * @param string $str
54
54
*
55
55
* @return bool
56
56
*/
@@ -62,7 +62,33 @@ public static function isUrl(string $str): bool
62
62
}
63
63
64
64
/**
65
- * @param $url
65
+ * @param string $str
66
+ *
67
+ * @return bool
68
+ */
69
+ public static function isGitUrl (string $ str ): bool
70
+ {
71
+ if (strpos ($ str , 'git@ ' ) === 0 ) {
72
+ $ str = 'ssh:// ' . $ str ;
73
+ }
74
+
75
+ $ rule = '/^(http|https|ssh):\/\/(.+@)*([\w\.]+)(:[\d]+)?\/*(.*)/i ' ;
76
+
77
+ return preg_match ($ rule , $ str ) === 1 ;
78
+ }
79
+
80
+ /**
81
+ * @param string $url
82
+ *
83
+ * @return bool
84
+ */
85
+ public static function simpleCheck (string $ url ): bool
86
+ {
87
+ return preg_match ('/^(\w+://)(.+@)*([\w\.]+)(:[\d]+)?/*(.*)/ ' , $ url ) === 1 ;
88
+ }
89
+
90
+ /**
91
+ * @param string $url
66
92
*
67
93
* @return bool
68
94
*/
@@ -91,7 +117,7 @@ public static function build(string $baseUrl, $data = null): string
91
117
}
92
118
93
119
/**
94
- * @param $url
120
+ * @param string $url
95
121
*
96
122
* @return bool
97
123
*/
@@ -111,9 +137,8 @@ public static function canAccessed(string $url): bool
111
137
return $ statusCode === 200 ;
112
138
}
113
139
} elseif (function_exists ('get_headers ' )) {
114
- $ headers = get_headers ($ url , 1 );
115
-
116
- return strpos ($ headers [0 ], 200 ) > 0 ;
140
+ $ headers = get_headers ($ url , true );
141
+ return strpos ($ headers [0 ], '200 ' ) > 0 ;
117
142
} else {
118
143
$ opts = [
119
144
'http ' => ['timeout ' => 5 ,]
@@ -202,11 +227,11 @@ public static function parseUrl(string $url): array
202
227
* $url2 = urldecode($url);
203
228
* echo $url1.PHP_EOL.$url2.PHP_EOL;
204
229
*
205
- * @param $url
230
+ * @param string $url
206
231
*
207
- * @return mixed| string
232
+ * @return string
208
233
*/
209
- public static function encode (string $ url )
234
+ public static function encode (string $ url ): string
210
235
{
211
236
if (!$ url = trim ($ url )) {
212
237
return $ url ;
@@ -216,9 +241,8 @@ public static function encode(string $url)
216
241
$ url = urldecode ($ url );
217
242
218
243
$ encodeUrl = urlencode ($ url );
219
- $ encodeUrl = str_replace (self ::$ entities , self ::$ replacements , $ encodeUrl );
220
244
221
- return $ encodeUrl ;
245
+ return str_replace ( self :: $ entities , self :: $ replacements , $ encodeUrl) ;
222
246
}
223
247
224
248
/**
@@ -231,9 +255,9 @@ public static function encode(string $url)
231
255
*
232
256
* @param string $url
233
257
*
234
- * @return mixed| string
258
+ * @return string
235
259
*/
236
- public static function encode2 (string $ url )
260
+ public static function encode2 (string $ url ): string
237
261
{
238
262
if (!$ url = trim ($ url )) {
239
263
return $ url ;
@@ -244,8 +268,6 @@ public static function encode2(string $url)
244
268
245
269
$ encodeUrl = rawurlencode (mb_convert_encoding ($ url , 'utf-8 ' ));
246
270
// $url = rawurlencode($url);
247
- $ encodeUrl = str_replace (self ::$ entities , self ::$ replacements , $ encodeUrl );
248
-
249
- return $ encodeUrl ;
271
+ return str_replace (self ::$ entities , self ::$ replacements , $ encodeUrl );
250
272
}
251
273
}
0 commit comments