如何使用php从HTML中删除标签及其内容

前端之家收集整理的这篇文章主要介绍了如何使用php从HTML中删除标签及其内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下是我需要移除的文字< p>来自的标签
<p> Addiction,stress and subjective wellbeing</p> 
<p> The need and significance of traditional shop lot pavements in the context of town conservation in Malaysia</p> 
<p> The role of wage and benefit in engaging employee commitment</p>

我试过这个

$title= preg_replace('#<p>(.*?)</p>#','',$title['result']);**

但仍然是< p>标签,任何想法?

只是为了删除p标签,你可以这样做
$text=str_ireplace('<p>',$text);
$text=str_ireplace('</p>',$text);
原文链接:https://www.f2er.com/php/137105.html

猜你在找的PHP相关文章