php remove html tags from string code example
Example 1: remove html tags from string php
<?php
echo strip_tags("Hello <b>world!</b>");
Example 2: remove html tags php
$text = '<p>Hello world.</p><!-- Comment --> <a href="https://learn-tech-tips.blogspot.com">Zidane</a>';
echo strip_tags($text);
$short_description = strip_tags(str_replace(" ", " ", $short_description));
echo $short_description
echo strip_tags($text, '<p><a>');
Example 3: php strip tags
<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
echo strip_tags($text, '<p><a>');
?>
Example 4: remove html from string php
echo strip_tags("Hello <b>world!</b>");
Example 5: remove html tags from a string except p in php
$text = '<div class="test"><p>Clean <a href="#">text</a><br><b>Bold</b> text</p></div>';
$cleanText = strip_tags($text, ['p','b','i','br']);