$_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.3 注册中添加动态下拉列表列? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
