Using strip_tags() function we can remove HTML tags from content.
$content = “<p><strong>testing data</strong></p>”;
echo strip_tags($content); // testing data
Using trim() remove white space from the beginning and end of a string.
$content = ” testing data “;
echo trim($content); // testing data