Strip Tags and everything in between

前端 未结 5 1317
南方客
南方客 2020-11-29 08:30

How can i strip

including this content

I know you can use strip tags to remove the tags, but i want everything in between gone as w

5条回答
  •  Happy的楠姐
    2020-11-29 09:12

    You also use strip_tags to remove the tags and also everything in between..

    $html contain your html or php from where you want to remove the tags.

    strip_tags($html,"");

    Try this i think this will work for you.

提交回复
热议问题