<html> <body>
<?php
$str = "aaa<br>bbb<br><hr>";
echo $str;
echo strip_tags( $str );
?>
</body> </html>
aaa<br>bbb<br><hr> aaabbb </body> </html>