Remove HTML tags and white space from content


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

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s