从php字符串中删除所有html标记

问题描述

采用 strip_tags

$text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>';
echo strip_tags($text);   //output Test paragraph. Other text

<?PHP echo substr(strip_tags($row_get_Business['business_description']),0,110) . "..."; ?>

解决方法

我想显示数据库条目的前110个字符。到目前为止很简单:

<?php echo substr($row_get_Business['business_description'],110) . "..."; ?>

但是上面的条目中包含由客户端输入的html代码。因此它显示:

<p class="Body1"><strong><span style="text-decoration: underline;">Ref no:</span></strong> 30001<strong></stro...

显然没有好处。

我只想剥离所有html代码,所以我需要从数据库条目中删除<和>之间的所有内容,然后显示前100个字符。

有任何想法吗?