본문으로 바로가기

[PHP] 태그제거 strip_tags() 사용법

category 프로그래밍/PHP 2016. 12. 16. 13:18

 

형식 strip_tags(string,allow);   //  string - 필수파라미터   allow - 선택파라미터

 

strip_tags() 함수는 넘겨받은 string파라미터에 태그가 있으면 모두 삭제시킨다.

allow는 선택파라미터로 태그입력시 allow로 넘겨받은 태그는 삭제시키지 않는다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$str = "<p>테스트</p><button type='button'>버튼</button>";
 
echo strip_tags($str);   // $str의 모든태그를 삭제
 
// 결과 //
 
테스트버튼
 
 
echo strip_tags($str, "<p>");  // $str의 모든태그를 삭제(<p>태그 제외)
 
// 결과 //
 
테스트
 
버튼