如何获取“/”后面的参数在 PHP 中的 URL 中
我需要让我的用户在我的网址末尾输入任何内容,如下所示:
http://mysite.com/?somethingorother
或
http://mysite.com/somethingorother
然后我想得到最后一点他们像这样添加到网址的末尾:
$var = $_POST[''];
但我不知道如何去做,而且我找不到任何东西,因为我不太确定如何搜索它。
任何帮助表示赞赏,谢谢!
I need to let my users type anything at the end of my url, like this:
http://mysite.com/?somethingorother
or
http://mysite.com/somethingorother
And then I would like to get that last bit that they added to the end of the url like so:
$var = $_POST[''];
But I'm not sure how to go about this, and I can't find anything, because I'm not quite sure how to search for it.
Any help is appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过 http://mysite.com/?somethingorother 您可以使用:
With http://mysite.com/?somethingorother you can use:
对于第二个示例,您无论如何都需要使用 url 重写(搜索
mod_rewrite
)。如果有?
你可以For your second example you'd need to use url rewriting (search
mod_rewrite
) anyway. If there is a?
you can just