Trying to remove only gif image from the content , tried below but that does remove all images
$content = "this is <img src="https://ecwowocc.com/test.gif"/> something with an <img src=https://ecwowocc.com/test.png"/> in it.";
$content = preg_replace("/<img[^>]+\>/i", "(image) ", $content);
echo $content;
i want to remove only GIF from the content