BLOG
[PHP]HTMLやPHPタグ除去
2015/8/30
PHPでHTMLやPHPのタグを除去できる関数についてです。
strip_tags
渡した文字列からNULLバイトと HTMLおよびPHPタグを取り除きます。fgetss()と同じタグ除去アルゴリズムです。
string strip_tags ( string $str [, string $allowable_tags ] )
str:入力文字列。
allowable_tags:取り除かないタグを指定できます。
例
1 2 3 |
$sample = '<p>サンプル<br />サンプル<br />サンプル<br />サンプル</p>'; $sample = strip_tags($sample); echo sample; |
1 2 3 |
$sample = '<p>サンプル<br />サンプル<br />サンプル<br />サンプル</p>'; $sample = strip_tags($sample, '<p>'); echo sample; |
Tag:PHP