PHP에서 정기적인 교체 태그를 구현하는 방법

藏色散人
풀어 주다: 2023-03-04 11:42:01
원래의
2816명이 탐색했습니다.

PHP에서 일반 태그 교체를 구현하는 방법: 먼저 "strip_tags" 함수를 통해 문자열에서 HTML 태그를 제거한 다음 정규식을 사용하여 태그를 교체하고 "pregreplace("/s+/",""와 같은 코드 문) ,str= pregreplace("/s+/","")".

PHP에서 정기적인 교체 태그를 구현하는 방법

권장: "PHP 비디오 튜토리얼"

1.strip_tags(에서 HTML 태그 제거 문자열 )

strip_tags() 함수는 문자열

2에서 HTML, XML 및 PHP 태그를 제거합니다. 문자열 교체

str_replace(array(" "," ","t","rn", "r", "n"),array("","","","","","")

3. 정규식을 사용하세요(다소 덜 효율적임)

str=pregreplace("/<(/?meta.*?)>/si","",str); //메타 태그 필터링

str=pregreplace("/< ;(/? body.*?)>/si","",str); //필터 본문 태그

str=pregreplace("/<(/?link.*?)>/si ","" ,str); //링크 태그 필터링

str=pregreplace("/<(/?form.*?)>/si","",str); //양식 태그 필터링

str=pregreplace("/cookie/si","COOKIE",str); //COOKIE 태그 필터링

str=pregreplace("/<(applet.*?)>(.* ?)< (/applet.*?)>/si","",str); //애플릿 태그 필터링

str=pregreplace("/<(/?applet.*?)> /si", "",str); //애플릿 태그 필터링

str=pregreplace("/<(style.*?)>(.*?)<(/style.*?)> ;/si" ,"",str); //필터 스타일 태그

str=pregreplace("/<(/?style.*?)>/si","",str);

str=pregreplace("/<(title.*?)>(.*?)<(/title.*?)>/si","",str) / /필터 제목 태그

str=pregreplace("/<(/?title.*?)>/si","",str); //제목 태그 필터링

str=pregreplace(" /<( object.*?)>(.*?)<(/object.*?)>/si","",str); //객체 태그 필터링

str=pregreplace( "/< (/?objec.*?)>/si","",str); //객체 태그 필터링

str=pregreplace("/<(noframes.*?)>( ... > ;/si","",str); //noframes 태그 필터링

str=pregreplace("/<(i?frame.*?)>(.*?)<(/i?frame .*?)>/si","",str); //필터 프레임 태그

str=pregreplace("/<(/?i?frame.*?)>/si", " ",str); //필터 프레임 태그

str=pregreplace("/<(script.*?)>(.*?)<(/script.*?)>/si" , "",str); //필터 스크립트 태그

위 내용은 PHP에서 정기적인 교체 태그를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!