Hi I have loads of snippets from my plug n play CMS but heres a small one.
PHP Code:
<?php
function removeComments ($address)
{
$style = file_get_contents($address);
if(preg_match("#\/\*((?!\*\/).)*#is", $style))
{
$style = preg_replace("#\/\*((?!\*\/).)*#is", "", $style);
$style = str_replace("*/", "", $style);
}
return "<xmp>".$style."</xmp>";
}
echo removeComments("http://www.heartinternet.co.uk/styles/main.css");
?>