Stripping HTML Tags from PHP Strings
Removing HTML tags from a PHP string is essential for displaying data from databases or user input without formatting interference. To achieve this, PHP offers the strip_tags() function.
Example:
$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($text); //output: Test paragraph. Other text
In your case, you can strip out all HTML tags from the database entry and display the first 110 characters as follows:
echo substr(strip_tags($row_get_Business['business_description']), 0, 110) . "...";
This code will first remove all HTML tags using strip_tags(), then use substr() to display the specified number of characters from the resulting string.
The above is the detailed content of How Can I Remove HTML Tags and Truncate Text in PHP?. For more information, please follow other related articles on the PHP Chinese website!