How do I remove

tag and its content from HTML using php

后端 未结 7 1205
既然无缘
既然无缘 2021-02-06 06:22

Below is the text I need to remove

tags from

Addiction, stress and subjective wellbeing

The need and signi

7条回答
  •  北恋
    北恋 (楼主)
    2021-02-06 06:48

    just to remove p tags you can do this

    $text=str_ireplace('

    ','',$text); $text=str_ireplace('

    ','',$text);

提交回复
热议问题