string(0) "" }">
当前位置:Gxlcms > PHP教程 > PHP:没办法获取参数中的html编码值

PHP:没办法获取参数中的html编码值

时间:2021-07-01 10:21:17 帮助过:0人阅读

URL:http://127.0.0.1/test.php?v=h

代码









结果:array(1) { ["v"]=> string(0) "" }

回复内容:

URL:http://127.0.0.1/test.php?v=h

代码









结果:array(1) { ["v"]=> string(0) "" }

关键在于那个&符号让PHP把参数这么理解了v= & #x68,所以自然接受到的就是空了。切记url传参最好都做一次urlencode,而不是base64_encode

人气教程排行