remove all html tags from string php 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 all attributes from HTML tags in PHP
$text = '<div class="test"><p onmousemove="javascript:alert(1);">Clean <a href="#">text</a></p></div>';
$cleanText = preg_replace("/<([a-z][a-z0-9]*)[^>]*?(\/?)>/si",'<$1$2>', $text);