<?php

function remove_comments($text)
{
    return 
preg_replace('#<!--(.+?)-->#is'''$text);
}

?>