在php 中使用strip_tags的问题

前端之家收集整理的这篇文章主要介绍了在php 中使用strip_tags的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > strip_tags() … replace tags by space rather than deleting them10个
我已经使用strip_tags从文本中删除html标签.

<h1>title of article</h1><div class="body">The content goes here......</div>

outputs 

title of articleThe content goes here......

如果你看到输出标题和正文被加入(articleThe).如果标签删除,我想插入一个空格.这可能吗.

我感谢任何帮助.

谢谢.

如果你想要的是添加一个开始标签直接跟随一个结束标签的空间,你可以这样做:
$html = preg_replace('/(<\/[^>]+?>)(<[^>\/][^>]*?>)/','$1 $2',$html);
$html = strip_tags($html);
原文链接:https://www.f2er.com/php/133131.html

猜你在找的PHP相关文章