【PHP】img タグを削除する

$html 内の img タグを削除して、結果を $result に返す。
[php]
$result = preg_replace( "/<img(.+?)>/", "", $html );
[/php]