php remove html 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: remove html from string php
echo strip_tags("Hello <b>world!</b>");