检查 URL 方案是 HTTP 还是 HTTPS
我使用以下代码将 http://
添加到 URL。
(substr(strtolower($url), 0, 7) == 'http://'?"":"http://").$url
但如何检查原始 URL 是否包含 https
呢?我不想使用 OR 子句。
I'm using the following code to add http://
to the URL.
(substr(strtolower($url), 0, 7) == 'http://'?"":"http://").$url
but how can I check whether the original URL contains https
? I don't want to use an OR clause.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
答案
参考
文档 https://www.php.net/manual/en/function.parse-url.php
parse_url(string $url, int $component = -1): 混合
parse_url
函数解析 URL 并返回一个关联数组,其中包含 URL 中存在的各个组件。数组元素的值未经过 URL 解码。此函数并不是为了验证给定的 URL,它只是将其分解为上面列出的部分。部分 URL 和无效 URL 也被接受,parse_url() 会尽力正确解析它们。
Answer
Reference
docs https://www.php.net/manual/en/function.parse-url.php
parse_url(string $url, int $component = -1): mixed
parse_url
function parses a URL and returns an associative array containing any of the various components of the URL that are present. The values of the array elements are not URL decoded.This function is not meant to validate the given URL, it only breaks it up into the above listed parts. Partial and invalid URLs are also accepted, parse_url() tries its best to parse them correctly.
在您的网址上使用 preg_match 和正则表达式:
如果返回 true,那么你的URL就可以了,无论是使用http还是https。
Use preg_match and a regular expression on your url :
If it returns true, then your URL is ok, whether it uses http of https.
我认为最好的方法是使用 parse_url() 函数。
像这样 :
I think the best way is to use parse_url() function.
Like this :