获取不带参数的地址栏
请帮助我获取不传递参数的浏览器地址栏的值。无需使用正则表达式和字符串函数。你能做到吗? (我在apache上使用php)。
进入
http://dev.mazda-parts.ru/catalogue/?spattern=1
退出
http://dev.mazda-parts.ru/catalogue/
Help me please get the value of the address bar of browser without the parameters passed. Without the use of regular expressions and string functions. You can do this? (I use php on apache).
enter
http://dev.mazda-parts.ru/catalogue/?spattern=1
exit
http://dev.mazda-parts.ru/catalogue/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看
$_SERVER
超全局。Take a look at the
$_SERVER
superglobal.parse_url() 可以帮助你,或者一些 php 字符串函数,比如 strtok()
parse_url() can help you, or some of the php string functions, like strtok()
您说您想要最后一页的 URL,可以在
$_SERVER['HTTP_REFERER']
变量中找到该 URL。请注意,该值不可靠,因为客户端可以随意更改它。
如果您想要更准确地查找最后一页,可以使用会话。这是一个例子:
You say that you want the URL of the last page, which can be found in the
$_SERVER['HTTP_REFERER']
variable.Beware that this value is not reliable as it can be freely changed by the client.
If you want a more accurate way of finding the last page, you can use sessions. Here's an example: