<?php
$variable = "This is something that I don't want to delete<blockquote>This is I want to delete </blockquote>";

$variable = preg_replace('/<blockquote>.+<\/blockquote>/siU', '', $variable);

echo htmlentities($variable);