I have a block of text that has a particular image that I want to strip out. The problem is that the tag can be with different styles
for e.g
<img src="myimage.png" alt="" class=""/>
or
<img alt="" class="" src="myimage.png"/>
or
<img class="" alt ="" src="myimage.png"/>
Now how can I remove that particular image tag from my string using PHP?