코드 복사 코드는 다음과 같습니다.
// $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','scスripptス',$ str)
$str = eregi_replace("<[/]{0,1}(link|meta|ifr|fra)[^>]*>",'',$ str);
}
추가 래쉬($str)
}