strip html tag 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>');
?>
Example 3: remove html from string php
echo strip_tags("Hello <b>world!</b>");
Example 4: strip html tag php
$text = '<a href="https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&ccId=2036080543_6069&jobId=329838&source=CC2&lang=en_US">https://workforcenow.adp.com/mascsr/default/mdf/recruitment/recruitment.html?cid=ed2438b9-d7f4-45be-b3d8-8c924068c18a&ccId=2036080543_6069&jobId=329838&source=CC2&lang=en_US</a>';
Example 5: strip html tag php
$text = '<p>Test paraagraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';