코드 복사 코드는 다음과 같습니다.
$str=preg_replace("/s /", " ", $str); //추가 캐리지 리턴 필터링
$str=preg_replace("/<[ ] /si","<",$str) //뒤에 공백이 있는 <__("<" 필터링)
$ str=preg_replace("//si","",$str); //댓글
$str=preg_replace("/<(! .*?) >/si","",$str); //DOCTYPE 필터링
$str=preg_replace("/<(/?html.*?)>/si","", $str); //html 태그 필터링
$str=preg_replace("/<(/?head.*?)>/si","",$str); //헤드 태그 필터링
$str=preg_replace ("/<(/?meta.*?)>/si","",$str); //메타 태그 필터링
$str=preg_replace("/<(/? body.*? )>/si","",$str); //본문 태그 필터링
$str=preg_replace("/<(/?link.*?)>/si"," ",$str ); //링크 태그 필터링
$str=preg_replace("/<(/?form.*?)>/si","",$str); //양식 태그 필터링
$str =preg_replace("/cookie/si","COOKIE",$str); //COOKIE 태그 필터링
$str=preg_replace("/<(applet.*?)>(.* ?)< (/applet.*?)>/si","",$str); //애플릿 태그 필터링
$str=preg_replace("/<(/?applet.*?)> ;/si" ,"",$str); //애플릿 태그 필터링
$str=preg_replace("/<(style.*?)>(.*?)<(/style.*? )>/ si","",$str); //필터 스타일 태그
$str=preg_replace("/<(/?style.*?)>/si","",$str ); // 필터 스타일 태그
$str=preg_replace("/<(title.*?)>(.*?)<(/title.*?)>/si","", $str); //제목 태그 필터링
$str=preg_replace("/<(/?title.*?)>/si","",$str); //제목 태그 필터링
$str=preg_replace ("/<(object.*?)>(.*?)<(/object.*?)>/si","",$str); 🎜>$str =preg_replace("/<(/?objec.*?)>/si","",$str); //객체 태그 필터링
$str=preg_replace("/<( noframes.*? )>(.*?)<(/noframes.*?)>/si","",$str); //noframes 태그 필터링
$str=preg_replace("/< ;(/? noframes.*?)>/si","",$str); //noframes 태그 필터링
$str=preg_replace("/<(i?frame.*?)>( .*?) <(/i?frame.*?)>/si","",$str); //프레임 태그 필터링
$str=preg_replace("/<(/?i? 프레임.*? )>/si","",$str); //프레임 태그 필터링
$str=preg_replace("/<(script.*?)>(.*?)< (/script. *?)>/si","",$str); //필터 스크립트 태그
$str=preg_replace("/<(/?script.*?)>/si" ,"", $str); //스크립트 태그 필터링
$str=preg_replace("/javascript/si","Javascript",$str); //스크립트 태그 필터링
$str=preg_replace(" /vbscript/si ","Vbscript",$str); //필터 스크립트 태그
$str=preg_replace("/on([a-z] )s*=/si","On\1=",$ str); / /스크립트 태그 필터링
$str=preg_replace("//si","",$str) //javAsCript:alert(
위 내용을 포함하여 HTML 태그, 공백, 줄바꿈의 PHP 정규 필터링에 대한 코드와 지침을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.