沃梦达 / 编程问答 / php问题 / 正文

$_SERVER['REQUEST_URI'] 也带有#hash?

$_SERVER[#39;REQUEST_URI#39;] with #hash too?($_SERVER[REQUEST_URI] 也带有#hash?)

本文介绍了$_SERVER['REQUEST_URI'] 也带有#hash?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我请求 site/page.php#hash$_SERVER['REQUEST_URI'] 只是 /page.php.

If i request site/page.php#hash the $_SERVER['REQUEST_URI'] is only /page.php.

有没有办法在 php 中(没有后来的 ajax)知道用户使用 #hash 请求页面?

Is there a way to know in php (without later ajax) that the user requested the page with #hash?

谢谢

推荐答案

简短回答:否.

哈希不会传递到服务器,它只存在于客户端.这是设计使然.如果您的问题的解决方案涉及需要了解哈希服务器端,那么您选择了错误的方法.

The hash isn't passed to the server, it exists only on the client-side. This is by design. If the solution to your problem involves needing to know the hash server-side, you've chosen the wrong way to go about it.

这篇关于$_SERVER['REQUEST_URI'] 也带有#hash?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:$_SERVER['REQUEST_URI'] 也带有#hash?

基础教程推荐