使用 PHP 删除字符串的一部分
我有一个输入框,告诉用户输入来自 imgur.com 的链接 我想要一个脚本来检查链接是否适用于指定站点,但我不知道该怎么做?
链接如下:https://i.sstatic.net/RYnCi.jpg 请注意,在 / 之后,文本可能会有所不同,例如不是 jpg,但主域始终是 http://i。 imgur.com/。
任何帮助表示赞赏。 谢谢,乔什。(新手)
I have an input box that tells uers to enter a link from imgur.com
I want a script to check the link is for the specified site but I'm not sue how to do it?
The links are as follows: https://i.sstatic.net/RYnCi.jpg
Please note that after the /, the text may vary e.g. not be a jpg but the main domain is always http://i.imgur.com/.
Any help appreciated.
Thanks, Josh.(Novice)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
尝试 parse_url()
Try parse_url()
使用 stripos 检查这一点
Check this, using stripos
试试这个:
其中 $_POST['url'] 是用户输入。
我还没有测试过这段代码。
Try this:
Where $_POST['url'] is the user input.
I haven't tested this code.
...
...
有几种方法可以做到这一点..这是一种:
Several ways of doing it.. Here's one: