Flair
3
Q:

remove html from string php

<?php
	echo strip_tags("Hello <b>world!</b>");
0
<?php
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);
//Test paragraph. Other text

// Allow <p> and <a>
echo strip_tags($text, '<p><a>');
//<p>Test paragraph.</p> <a href="#fragment">Other text</a>
// as of PHP 7.4.0 the line above can be written as:
// echo strip_tags($text, ['p', 'a']);
?>

2
echo strip_tags("Hello <b>world!</b>");
1

New to Communities?

Join the community