Home  >  Article  >  Backend Development  >  php获取URL中带#号等特殊符号参数的解决方法_php技巧

php获取URL中带#号等特殊符号参数的解决方法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:36:471049browse

例如下面的PHP代码:

复制代码 代码如下:

echo $_GET['key'];
?>

当url为http://test.com/c.php?key=999时,正常输出:999
当url为http://test.com/c.php?key=9#888时,只能输出:9
而我想要获得的是9#888,那要怎么办呢?只能在把9#888传递给key的这个环节想办法。

我是用JS中的escape函数编码后传递解决了这个问题,需要的朋友可以参考一下。

复制代码 代码如下:


查询

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn