0
我想閱讀一個網址。 www.domain.com?cookie=set&redirect=yes
請求網址保存方式
現在我想使用$ _SERVER['REQUEST_URI']
但這不適用於strip_tags
和htmlspecialchars
。
還有許多我讀了您應該注意XSS。
有誰知道如何保存URL可以通過GET使用嗎?
$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 &重新d I整流器=是
輸出=>的index.php餅乾嗎? = SE%3Cscript%3ET &重新%板3Cb%3ED%3C/b%3Eirect =是
好吧,我改變了,但仍然strip_tags d htmlspecialchars does not working – Bas
Strip標籤在這種情況下不會做任何事情,因爲$ _SERVER的值將被URL編碼,所以'