If you do not want to use the DOM , you can always use preg_replace to do this.
$content = 'hello Rose <tag> Micheal </tag> and <tag> July </tag> John.';
$content = preg_replace('/<tag>[^<]+<\/tag>/i', '', $content);
print $content; // returns: hello Rose and John.
Abela source
share