如何获取“/”后面的参数在 PHP 中的 URL 中

发布于 2024-10-09 22:27:55 字数 404 浏览 1 评论 0原文

我需要让我的用户在我的网址末尾输入任何内容,如下所示:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终遇你 2024-10-16 22:27:55

通过 http://mysite.com/?somethingorother 您可以使用:

substr($_SERVER['REQUEST_URI'],2);

With http://mysite.com/?somethingorother you can use:

substr($_SERVER['REQUEST_URI'],2);
枯寂 2024-10-16 22:27:55

对于第二个示例,您无论如何都需要使用 url 重写(搜索 mod_rewrite)。如果有 ? 你可以

foreach($_GET as $key => $value) {   echo "$key: $value"; }

For your second example you'd need to use url rewriting (search mod_rewrite) anyway. If there is a ? you can just

foreach($_GET as $key => $value) {   echo "$key: $value"; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文