how to remove html comments in php

comments, html, php

Solution

// Remove unwanted HTML comments
function remove_html_comments($content = '') {
    return preg_replace('/<!--(.|\s)*?-->/', '', $content);
}

As you can read here : https://davidwalsh.name/remove-html-comments-php

Problem

I am trying to remove any comments embedded with the html file ``` $data= file_get_contents($stream); <br> $data = preg_replace('<!--*-->', '', $data); <br> echo $data; ``` I am still ending up with all the comments < !- bla bla bla --> What am I doing wrong?

Original source

Related problems