我想使用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