strap tags php code example
Example 1: 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 2: 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>');
?>