我想读一个网址。www.domain.com?cookie=set&redirect=yes
现在我想使用$ _SERVER['REQUEST_URI']
,但这不适用于strip_tags
and htmlspecialchars
。
还有很多我读到你应该注意 XSS。
有谁知道如何保存 GET 可以使用的 URL?
$url = "http://'.$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI];
$url = strip_tags($url);//doesnt work
$url = htmlspecialchars($url);//doesnt work
谢谢!
编辑为(不起作用):
$url = "http://".$_SERVER[HTTP_HOST]."".$_SERVER[REQUEST_URI];
$url = strip_tags($url);
echo $url;
例如 www.domain.com?cookie=set&re direct =yes
输出 => index.php?cookie=se%3Cscript%3Et&re%3Cb%3Ed%3C/b%3Eirect=yes