複製程式碼 程式碼如下:
// $rptype = 0 表示僅取代html標記
// $rptype = 1 表示替換html標記同時移除連續空白字元
// $rptype = 2 表示替換html標記同時移除所有空白字元
// $rptype = -1 表示僅替換html危險的標記
function HtmlReplace($ str,$rptype=0)
{
$str = stripslashes($str);
if($rptype==0)
{
$str = htmlspecialchars($str);
}
else if($rptype==1)
{
$str = htmlspecialchars($str);
$str = str_replace(" ",' ',$str);
$str = ereg_replace("[rnt ]{1,}",' ',$str);
}
else if($rptype==2)
{
$str = htmlspecialchars($str);
$str = str_replace(" ",'',$str);
$str = ereg_replace("[rnt ]",'',$str);
}
else
{
$str = ereg_replace("[rnt ]{1,}",' ',$str);
$str = eregi_replace('script','script',$$ str);
$str = eregi_replace("]*>",'',$str);
}
return addslashes($str);
}
以上就介紹了replace php HtmlReplace輸入濾波安全函數,包含了replace的內容,希望對PHP教學有興趣的朋友有幫助。