我想显示数据库条目的前 110 个字符。到目前为止很容易:
<?php echo substr($row_get_Business['business_description'],0,110) . "..."; ?>
但是上面的条目中包含客户端输入的 html 代码。所以它显示:
<p class="Body1"><strong><span style="text-decoration: underline;">Ref no:</span></strong> 30001<strong></stro...
显然不好。
我只想删除所有 html 代码,所以我需要从 db 条目中删除 < 和 > 之间的所有内容,然后显示前 100 个字符。
有什么想法吗?