$_SERVER[#39;REQUEST_URI#39;] with #hash too?($_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?


- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01