使用所有posible属性从字符串中完全删除img标签

时间:2019-06-26 18:41:51

标签: php

我想使用preg_replace从字符串中完全删除具有任何属性或样式的img标签

$content= "image to remove completely <img src="jem.jpg" style="height:162px; width:397px" />";

其中包含一些东西。

我尝试使用preg_replace,但是没有用。

$content= "image to remove completely <img src="jem.jpg" style="height:162px; width:397px" />";

$content = preg_replace("/<img[^>]+\>/i", " ", $content ); 

预期输出:image to remove completely

0 个答案:

没有答案