web技術を書いていきます
$text = 'テスト<br><p>テスト</p><strong>テスト</strong>'; $text = strip_tags($text); echo $text;
$text = 'テスト<br><p>テスト</p><strong>テスト</strong>'; $text = strip_tags($text, '<br><strong>'); echo $text;