1. すべての HTML 要素を削除するか、特定の HTML タグを保持します
$text = '
段落をテストします。 p> ; その他のテキスト';
echotrip_tags($text);
echo "/n";
//
と を許可します
echo Stripe_tags($text, '');
?>
2. 、特定の HTML タグのみを削除します
functionstrip_only($str, $tags, $stripContent = false) {
$content = ' ';
if(! is_array($tags)) {
$tags = (strpos($str, '>') !== false ?explode('>', str_replace('<', '', $tags)) : array ($tags));
if(end($tags) == '') array_pop($tags);
foreach($tags as $tag) {
if ($stripContent)
$content = '(. +'.$tag.'[^>]*>|)';
$str = preg_replace('#?'.$tag.'[^>]* >'. $content.'#is', '', $str);
}
return $str;
}
$str = '
赤色 テキスト';
$tags = 'font';
$a =trip_only($str, $tags); // 赤色のテキスト
$ b =strip_only($str, $tags, true); // テキスト
?>