$_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?
基础教程推荐
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01